diff --git a/01-relational-database.md b/01-relational-database.md new file mode 100644 index 00000000..ae2db47d --- /dev/null +++ b/01-relational-database.md @@ -0,0 +1,142 @@ +--- +title: What is a relational database? +teaching: 10 +exercises: 5 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Define a relational database +- Compare with other types of databases +- Understand the structure of a table +- List the SQLite datatypes +- Explain the purpose of a Schema +- Explain Key fields +- Understand the use of NULL + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- What is a relational database? +- What is a table? +- What is a data type? +- Why do tables have key columns? +- What different types of keys are there? +- How does the database represent missing data? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## What is a relational database? + +A relational database is a collection of data items organised as a set of tables. Relationships can be defined between the data in one table and the data in another or many other tables. The relational database system will provide mechanisms by which you can query the data in the tables, re-assemble the data in various ways without altering the data in the actual tables. +This querying is usually done using SQL (Structured Query Language). SQL allows a great many queries to be constructed from the use of only a few keywords. +You could have a relational database with only one table, but then you would not have any relationships and it would be more like a spreadsheet. +Databases are designed to allow efficient querying against very large tables, more than the 1M rows allowed in an Excel spreadsheet. + +## What is a table? + +As were have noted above, a single table is very much like a spreadsheet. It has rows and it has columns. A row represents a single observation and the columns represents the various variables contained within that observation. +Often one or more columns in a row will be designated as a 'primary key' This column or combination of columns can be used to uniquely identify a specific row in the table. +The columns typically have a name associated with them indicating the variable name. A column always represents the same variable for each row contained in the table. Because of this the data in each column will always be of the same *type*, such as an Integer or Text, of values for all of the rows in the table. Datatypes are discussed in the next section. + +## What is a data type? + +A data type is a description of the kind of data in a table column. Each database system recognises its own set of datatypes, although some are common to many. +Typical examples will be Integer or Text. + +The table below gives some examples. + +| Data type | Description | +| ---------------------------------- | :------------------------------------------------------------------------------------------------------- | +| CHARACTER(n) | Character string. Fixed-length n | +| Text | Character string. Variable length | +| VARCHAR(n) or CHARACTER VARYING(n) | Character string. Variable length. Maximum length n | +| BINARY(n) | Binary string. Fixed-length n | +| BOOLEAN | Stores TRUE or FALSE values | +| VARBINARY(n) or BINARY VARYING(n) | Binary string. Variable length. Maximum length n | +| INTEGER(p) | Integer numerical (no decimal). | +| SMALLINT | Integer numerical (no decimal). | +| INTEGER | Integer numerical (no decimal). | +| BIGINT | Integer numerical (no decimal). | +| DECIMAL(p,s) | Exact numerical, precision p, scale s. | +| NUMERIC(p,s) | Exact numerical, precision p, scale s. (Same as DECIMAL) | +| FLOAT(p) | Approximate numerical, mantissa precision p. A floating number in base 10 exponential notation. | +| REAL | Approximate numerical | +| FLOAT | Approximate numerical | +| DOUBLE PRECISION | Approximate numerical | +| DATE | Stores year, month, and day values | +| TIME | Stores hour, minute, and second values | +| TIMESTAMP | Stores year, month, day, hour, minute, and second values | +| INTERVAL | Composed of a number of integer fields, representing a period of time, depending on the type of interval | +| ARRAY | A set-length and ordered collection of elements | +| MULTISET | A variable-length and unordered collection of elements | +| XML | Stores XML data | + +But in practice you can usually restrict your usage to a few + +| Data type | Description | +| ---------------------------------- | :------------------------------------------------------------------------------------------------------- | +| BOOLEAN | Stores TRUE or FALSE values | +| INTEGER | Integer numerical (no decimal). | +| FLOAT | Approximate numerical | +| DATE | Stores year, month, and day values | +| TIME | Stores hour, minute, and second values | +| TIMESTAMP | Stores year, month, day, hour, minute, and second values | + +In SQLite there is only a small number. + +| Data type | Description | +| ---------------------------------- | :------------------------------------------------------------------------------------------------------- | +| NULL | The value is a NULL value | +| INTEGER | The value is a signed integer, stored in 1, 2, 3, 4, 6, | +| | or 8 bytes depending on the magnitude of the value | +| REAL | The value is a floating point value, stored in 8-bytes | +| TEXT | The value is a text string | +| BLOB | The data is stored exactly as it was input, Used for binary | +| | data such as images. | + +We won't be using any BLOB data and it is debatable whether or not NULL should be considered a type at all. + +There are some common datatypes which are missing from the SQLite list. + +BOOL or BOOLEAN : This type typically accepts values of 'True' and 'False' In SQLite we would use the Integer type and assign values of 1 to represent 'True' and +0 to represent 'False'. + +DATE, DATETIME, TIMESTAMP : SQLite does not have a datatype for storing dates and/or times. You can use TEXT, REAL, or INTEGER values +for these and use the built-in Date And Time Functions to manipulate them. We will look at manipulating dates in Lesson 5. + +## Why do tables have primary key columns? + +Whenever you create a table, you will have the option of designating one of the columns as the primary key column. The main property of the primary key column is that the values contained in it must uniquely identify that particular row. That is you cannot have duplicate primary keys. This can be an advantage which adding rows to the table as you will not be allowed to add the same row (or a row with the same primary key) twice. + +The primary key column for a table is usually of type Integer although you could have Text. For example if you had a table of car information, then the "Reg\_No" column could be made the primary key as it can be used to uniquely identify a particular row in the table. + +A table doesn't have to have a primary key although they are recommended for larger tables. A primary key can also be made up of more than one column, although this is less usual. + +## What different types of keys are there? + +In addition to the primary key, a table may have one or more *Foreign keys*. A foreign key does not have to be unique or identified as a foreign key when the table is created. A foreign key in one table will relate to the primary key in another table. This allows a relationship to be created between the two tables. If a table needs to be related to several other tables, then there will be a foreign key (column) for each of those tables. + +## How does the database represent missing data? + +All relational database systems have the concept of a NULL value. NULL can be thought of as being of all data types or of no data type at all. It represents something which is simply *not known*. + +When you create a database table, for each column you are allowed to indicate whether or not it can contain the NULL value. Like primary keys, this can be used as a form of data validation. + +In many real life situations you will have to accept that the data isn't perfect and will have to allow for NULL or missing values in your table. + +In DB Browser we can indicate how we want NULL values to be displayed. We will use a RED background to the cell to make it stand out. In SQL queries you can specifically test for NULL values. + +We will look at missing data in more detail in a later episode. + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- A relational database is data organised as a collection of related tables +- SQL (Structured Query Language) is used to extract data from the tables. Either a single table or data spread across two or more related tables. +- A schema, which describes the data in a table, has to be created before data can be added +- The schema can be used to provide some data validation on input + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/02-db-browser.md b/02-db-browser.md new file mode 100644 index 00000000..ab2610b6 --- /dev/null +++ b/02-db-browser.md @@ -0,0 +1,141 @@ +--- +title: Using DB Browser for SQLite +teaching: 10 +exercises: 0 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Understand the layout of the DB Browser for SQLite and the key facilities that it provides +- Connect to databases +- Create new databases and tables +- Run SQL queries +- Export the results of queries + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- What does the DB Browser for SQLite allow me to do? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Launching DB Browser + +In Windows the installation of DB Browser does not create a desktop icon. To explicitly launch the application after installing it, use the windows button (bottom left of screen) and type in ‘DB Browser' in the search bar and selecting the application when it appears. + +![](fig/DB_Browser_install_2.png){alt='DB Browser run'} + +## The Initial screen + +The initial screen of DB Browser will look something like this, the panes may be in a different configuration; + +![](fig/DB_Browser_run_1.png){alt='DB Browser initial screen'} + +There is; + +A small menu system consisting of File, Edit, View and Help. +Below the menu system is a toolbar with four options; New Database, Open Database, Write Changes and Revert Changes. +Below the toolbar is a 4-tabbed pane for; Database Structure, Browse Data, Edit Pragmas and Execute SQL. Initially these will be quite empty as we haven't created or opened a database yet. In general we will see how each of these are used as we go through the lesson with the exception of the Edit Pragmas tab which deals with system wide parameters which we won't want to change. + +On the right hand side there are two further panes, at the top is the Edit Database Cell pane which is grayed out. Below it is a 3-tabbed pane for DB Schema, SQL log and Remote. We are only really interested in the DB Schema tab. + +## Initial changes to the layout. + +The overall layout of DB Browser is quite flexible. The panes on the right-hand side can be dragged and dropped into any position, the individual tabs on the bottom pane closed directly from the pane and re-opened from the menu View item. + +We will make a couple of initial changes to the layout of the screen. These will be retained across sessions. + +1. From the View menu item un-select the 'Edit Database Cell' icon to the left of the text. This will make the pane close and the bottom pane will be expanded automatically to fill the space. +2. a) On Windows, From the View menu item select 'preferences' and select the Data Browser tab. +3. b) On Mac, From the "DB Browser for SQLite" menu item select 'preferences' and select the Data Browser tab. + +![](fig/DB_Browser_run_2.png){alt='Data Browser Preferences'} + +Towards the bottom there is a section dealing with Field colors. You will see three bars below the word Text, to the right there are in fact three invisible bars for the Background. Click in the area for the Background color for NULL. A colour selector window will open, select Red. The bar will turn Red. This is now the default background cell colour that will be used to display NULL values in you tables. We will discuss the meaning of NULL values in a table in a later episode. + +You can now close the preference window by clicking OK. + +## Opening a database + +For this lesson we will be making extensive use of the SQL\_SAFI database. If you do not already have a copy of this database you can download it from [here](data/SQL_SAFI.sqlite). + +To open the database in DB Browser do the following; + +1. Click on the 'open database' button in the toolbar. +2. Navigate to where you have stored the database file on your local machine, select it and click open. + +When you open the database, the 'Database Structure' tab on the left and the 'DB Schema' pane on the right will look very similar. +However the 'DB Schema' pane is only there to allow you to see the details of the schema for the tables. In particular what tables are in the database and the fields and their types which are in each table. + +The 'Database Structure' tab on the left allows you to initiate actions on the tables. +If you right click on a table name in the 'DB Schema' pane, nothing happens. +However, if you do the same in the 'Database Structure' menu you will be given a set of possible actions. +These are the same actions that are available from the toolbar at the top of the tab. + +![](fig/DB_Browser_run_3.png){alt='Table Actions'} + +If you select 'Browse Table', the data from the table is loaded into the 'Browse Data' pane from where it can be examined or filtered. +You can also select the table you wish to Browse directly from here. + +There are options for 'New Record' and 'Delete Record'. As our interest is in analysing existing data not creating or deleting data, it is unlikely that you will want to use these options. + +## Running SQL Queries + +We will be running queries extensively in future episodes. For now we will just provide an outline of the environment. + +In the left hand pane if you select the Execute SQL tab, you will be presented with a three paned window and a small toolbar. +The top pane is itself tabbed with the initial tab labeled 'SQL 1'. This is the SQL editor pane into which you will type your queries. + +Below is a simple example query and the results. + +![](fig/DB_Browser_run_4.png){alt='SQL Query results'} + +Notice that the query has been written over multiple lines. This is commonly done to aid readability. +The second pane has the tabular results, and the bottom pane has a message indicating how many rows were returned, how long it took and a copy of the SQL statement that was executed. + +On the toolbar at the top there are eight buttons. Left to right they are: + +- Open Tab (creates a new tab in the editor) +- Open SQL file (allows you to load a prepared file of SQL into the editor - the tab takes the name of he file) +- Save SQL file (allows you to save the current contents of the active pane to the local file system) +- Execute SQL (Executes all of the SQL statements in the editor pane) +- Execute current line (Actually executes whatever is selected) +- Save Results (Either to a CSV file or as a database view. We will look at views in a later episode) +- Find (Text in the editor window) +- Find \& Replace (Text in the editor window) + +Because it is possible to have and execute multiple SQL statements in the same editor pane, each must be terminated with a ';'. +If you only have a single statement you don't need it, but it might be considered best practice to always include it. + +The pane below the editor is the Results pane. The results of running your query will appear here in a simple tabular format. +The bottom pane is for messages about the execution, either an error message or an indication of how many rows were returned by the query. + +## Creating a database + +As well as opening (connecting) to existing databases it is also possible to create new SQLite databases and tables using DB Browser. +To create a database click the New Database button from the main toolbar (also available from the File menu). You will initially be asked for a name for the database and where you want to save it. It is saved as a single file. You can choose your own extension but 'sqlite' is recommended. If you do not provide a default, then a '.db' extension will be used. Although the new database is empty, in that there are no tables in it, the `.sqlite` file itself is not empty. + +Once you have saved the database file the Create Table wizard will open allowing you to create a table. You can cancel this as we will be going through the create table process in a later episode. + +## Write Changes \& Revert Changes + +Much of our SQL work involves looking at existing data using SQL queries and possibly writing out the results to a CSV file, in general we will not be changing the contents of the database. + +However if, during your DB Browser session, you were to create or delete a table or create a view, then the changes are not automatically written to the database file. + +When you try to end the session (i.e. close the application) in which you have made such changes, then you will be asked if you want to save the changes you have made. +Alternatively you can explicitly save changes or revert changes during a session by use of the Write Changes and Revert Changes buttons on the toolbar. +Once written the changes are permanent (there is no concept of multiple 'undo' like you might have in other programs). +Revert Changes will take you back to the last Written copy. + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- The DB Browser for SQLite application allows you to connect to an existing database or create a new database +- When connected to a database you can create new tables +- When connected to a database you can write and run SQL queries and view the results +- You can save the results of a query to a file + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/03-select.md b/03-select.md new file mode 100644 index 00000000..79571261 --- /dev/null +++ b/03-select.md @@ -0,0 +1,318 @@ +--- +title: The Select Statement +teaching: 15 +exercises: 10 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Define SQL +- Explain how SQL is used to access relational database tables +- Understand the difference between DDL and DML +- Create simple SQL queries to return rows and columns from existing tables +- Construct more complex logical expressions for use in WHERE clauses +- Return sorted results from a query + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- What is SQL? +- How can I return specific columns from a table? +- How can I return specific rows from a table? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Definition of SQL + +SQL or Structured Query Language is an international standard for manipulating data in a relational database. +Each Relational Database system like Oracle, MySQL or SQLite implements its own variation of the standard. + +Fortunately for the types of commands and queries that we will want to write, all of the implementations are much in agreement. +The SELECT queries we will be writing to access data in our SQLite database will execute un-altered in many of the other environments. + +Essentially you only have to learn SQL once. + +## SQL and Relational database tables + +The strength of SQL is that a single SQL statement or query can request data be returned from one or many of the tables in the database. +You can essentially define the relationships between tables on-the-fly as part of your query statement. Relationships between tables are often included as +part of the overall database design. In our situation we may be getting an assortment of tables from different sources so being able to imply the relationship as part of +the query has definite advantages. + +## DDL and DML + +DDL stands for Data Definition Language. It is the set of SQL commands used to create, alter or delete database objects such as tables. + +DML stands for Data Manipulation Language. For our purposes this is the SELECT command which is used to extract data items from one or more of the database tables. + +## Simple SQL queries using the Select statement + +For the rest of this episode we will be looking at the SELECT statement. + +To follow along, you should open the DB Browser application and connect to the SQL\_SAFI database. + +In SQL, querying data is performed by a SELECT statement. A select statement has 6 key components; + +```sql +SELECT colnames +FROM tablename +WHERE conditions +GROUP BY colnames +HAVING conditions +ORDER BY colnames +``` + +In practice very few queries will have all of these clauses in them simplifying many queries. On the other hand, +conditions in the WHERE clause can be arbitrarily complex and if you need to JOIN two or more tables together then more clauses (JOIN and ON) are needed. + +All of the clause names above have been written in uppercase for clarity. SQL is not case sensitive. Neither do you need to write each clause on a new line, but it is often clearer to do so for all but the simplest of queries. + +In this episode we will start with the very simple and work our way up to the more complex. + +The simplest query is effectively one which returns the contents of the whole table + +```sql +SELECT * +FROM Farms; +``` + +It is better practice and generally more efficient to explicitly list the column names that you want returned. + +```sql +SELECT Country, A06_province, A07_district, A08_ward, A09_village +FROM Farms; +``` + +The '\*' character acts as a wildcard meaning all of the columns but you cannot use it as a general wildcard. +So for example, the following is not valid. + +```sql +SELECT A* +FROM Farms; +``` + +If you run it you will get an error. +When an error does occur you will see an error message displayed in the bottom pane. + +In addition to limiting the columns returned by a query, you can also limit the rows returned. +The simplest case is to say how many rows are wanted using the `LIMIT` clause. +In the example below only the first ten rows of the result of the query will be returned. +This is useful if you just want to get a feel for what the data looks like. + +```sql +SELECT * +FROM Farms +LIMIT 10; +``` + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +Write a query which returns the first 5 rows from the Farms table with only the columns Id, and B16 to B20. + +::::::::::::::: solution + +## Solution + +```sql +SELECT Id + , B16_years_liv + , B17_parents_liv + , B18_sp_parents_liv + , B19_grand_liv + , B20_sp_grand_liv +FROM Farms +LIMIT 5; +``` + +Because the query uses several columns (with longish names), for readability they have been set out on separate lines. SQL takes +of white space to you are free to arrange the text of the query as you like. + + + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## The `WHERE` clause + +Usually you will want to restrict the rows returned based on some criteria. i.e. certain values or ranges within one or more columns. + +In this example we are only interested in rows where the value in the B16\_years\_liv column is greater than 25 + +```sql +SELECT Id, B16_years_liv +FROM Farms +WHERE B16_years_liv > 25 +; +``` + +In addition to using the '>' we can use many other operators such as \<, \<=, =, >=, \<> + +```sql +SELECT Id, B17_parents_liv +FROM Farms +WHERE B17_parents_liv = 'yes' +; +``` + +## Using more complex logical expressions in the `WHERE` clause + +We can also use the AND and OR keywords to build more complex selection criteria. + +```sql +SELECT Id +FROM Farms +WHERE B17_parents_liv = 'yes' + AND B18_sp_parents_liv = 'yes' + AND B19_grand_liv = 'yes' + AND B20_sp_grand_liv = 'yes' +; +``` + +Notice that the columns being used in the `WHERE` clause do not need to returned as part of the `SELECT` clause. + +You can ensure the precedence of the operators by using brackets. Judicious use of brackets can also aid readability + +```sql +SELECT Id +FROM Farms +WHERE (B17_parents_liv = 'yes' OR B18_sp_parents_liv = 'yes') AND B16_years_liv > 60 +; +``` + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +From the above query, breakdown the `WHERE` clause so that each component can be tested individually. +Make a note of how many rows are returned in each case. + +::::::::::::::: solution + +## Solution + +To test each of the `OR` clauses + +```sql +SELECT Id +FROM Farms +WHERE B17_parents_liv = 'yes' +; +SELECT Id +FROM Farms +WHERE B18_sp_parents_liv = 'yes' +; +SELECT Id +FROM Farms +WHERE (B17_parents_liv = 'yes' OR B18_sp_parents_liv = 'yes') +; +SELECT Id +FROM Farms +WHERE B16_years_liv > 60 +; +``` + +`OR` generally creates a less restrictive condition and `AND` makes a more restrictive condition. + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +The following query returns the rows where the value of B16\_years\_liv is in the range 51 to 59 inclusive. + +```sql +SELECT Id, B16_years_liv +FROM Farms +WHERE B16_years_liv > 50 AND B16_years_liv < 60 +; +``` + +The same results could be obtained by using the BETWEEN or IN operators + +```sql +SELECT Id, B16_years_liv +FROM Farms +WHERE B16_years_liv BETWEEN 51 AND 59 +; +``` + +```sql +SELECT Id, B16_years_liv +FROM Farms +WHERE B16_years_liv IN (51, 52, 53, 54, 55, 56, 57, 58, 59) +; +``` + +The list of values in brackets do not have to be contiguous or even in order. + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +Write a query using the Farms table which returns the columns Id, A09\_village, A11\_years\_farm, B16\_years\_liv. We are only interested in rows where the A09\_village value is either 'God' or 'Ruaca'. Additionally +we only want A11\_years\_farm values in the range 20 to 30 exclusive and B16\_years\_liv values strictly greater than 40. +There are many ways of doing this, but try to use an inequality, an `IN` clause and a `BETWEEN` clause. + +::::::::::::::: solution + +## Solution + +``` +SELECT Id, A09_village, A11_years_farm, B16_years_liv +FROM Farms +WHERE A09_village IN ('God', 'Ruaca') + AND A11_years_farm BETWEEN 21 AND 29 + AND B16_years_liv > 40 +; +``` + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Sorting results + +If you want the results of your query to appear in a specific order, you can use the ORDER BY clause + +```sql +SELECT Id, A09_village, A11_years_farm, B16_years_liv +FROM Farms +WHERE A09_village = 'God' +ORDER BY A11_years_farm +; +``` + +By default the SQL assumes Ascending order. You can make this more explicit by using the `ASC` or `DESC` keywords. + +```sql +SELECT Id, A09_village, A11_years_farm, B16_years_liv +FROM Farms +WHERE A09_village = 'God' +ORDER BY A11_years_farm DESC +; +``` + +You can also order by multiple columns + +```sql +SELECT Id, A09_village, A11_years_farm, B16_years_liv +FROM Farms +WHERE A09_village = 'God' +ORDER BY A11_years_farm DESC , B16_years_liv ASC +; +``` + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- Strictly speaking SQL is a standard, not a particular implementation +- SQL implementation are sufficiently close that you only have to learn SQL once +- The DDL constructs are used to create tables and other database objects +- The DML constructs, typically the SELECT statement is used to retrieve data from one or more tables +- The SELECT statement allows you to 'slice' and 'dice' the columns and rows of the dataset so that the query only returns the data of interest + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/04-missing-data.md b/04-missing-data.md new file mode 100644 index 00000000..263d304b --- /dev/null +++ b/04-missing-data.md @@ -0,0 +1,116 @@ +--- +title: Missing Data +teaching: 10 +exercises: 0 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Recognise what the database sees as missing data +- Understand that the original data source may represent missing data differently +- Define strategies for dealing with missing data + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- How can I deal with missing data? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## How does the database represents missing data + +At the beginning of this lesson we noted that all database systems have the concept of a NULL value; Something which is missing and nothing is known about it. + +In DB Browser we can choose how we want NULLs in a table to be displayed. When we had our initial look at DB Browser, +we used the `View | Preference` option to change the background colour of cells in a table which has a `NULL` values as **red**. +The example below, using the 'Browse data' tab, shows a section of the Farms table in the SQL\_SAFI database showing column values which are `NULL`. + +![](fig/SQL_04_Nulls_01.png){alt='Farms NULLs'} + +If you type '=NULL' in the filter box for `F14_items_owned`, only the rows with NULL in `F14_items_owned` will be displayed. + +You can get the same results using the following query; + +``` +SELECT * +FROM Farms +WHERE F14_items_owned IS NULL +; +``` + +Notice that we use `IS` and not `=`. This is because 'NULL' equals nothing and everything all at the same time! + +This table was created from a csv file, part of which looks like this + +![](fig/SQL_04_Nulls_02.png){alt='Farms\_csv'} + +The highlighted area shows part of the record with Id = 21, the second record returned by the query. It starts with the 'F10\_liv\_owned' column and ends +with the 'G01\_no\_meals' column. The Arrow points to the two consecutive ','s representing the lack of a value for the 'F14\_items\_owned' column. +These values are missing from the data. + +## Reasons for Missing data + +There can be many reasons why data is missing; Not collected, lost, Not applicable etc. +In the case of our Farms table, many of the missing values have occurred as a result of the survey design. + +If you run the following query : + +```sql +SELECT E01_water_use, E_no_group_count, E_yes_group_count +FROM Farms +; +``` + +The first part of the results will look like this: + +![](fig/SQL_04_Nulls_04.png){alt='Farms\_csv'} + +You may be able to spot from this the relationship between the values in the `E01_water_use` column and whether or not there is a `NULL` value in either the `E_no_group_count` or the `E_yes_group_count` column. + +Only if the Farmer said that they did use water (E01\_water\_use = 'yes') they were asked how many plots they used water on and the value stored +in E\_yes\_group\_count otherwise this field was not even presented in the survey and so contains a `NULL` value. +In this situation we expect `NULL` values and they will not cause any problems. + +However the `F14_items_owned` column records the possessions of the Farmer. This question was always asked. It is not clear from the `NULL` values we +find in this field whether or not it means 'I have no possessions' or 'I do not wish to tell you what possessions I have', in short, we know nothing about the items owned and therefore +the value of `NULL` is appropriate. + +## Dealing with missing data + +There are several statistical techniques that can be used to allow for `NULL` values, which one you might will depend on what has caused the `NULL` value to be recorded. + +You may want to change the `NULL` value to something else. For example if we knew that the `NULL` values in the `F14_items_owned` column actually meant that the Farmer had no possessions then we +might want to change the `NULL` values to '[]' to represent and empty list. We can do that in SQL with an `UPDATE` query. + +The update query is shown below. We are not going to run it as it would change our data. +You need to be very sure of the effect you are going to have before you change data in this way. + +```sql +UPDATE Farms +SET F14_items_owned = '[]' +WHERE F14_items_owned is NULL +; +``` + +Rather than changing the data we may just want to miss it out of our analysis. + +We can write a query which excludes the rows where `F14_items_owned` has a `NULL` value with: + +```sql +SELECT * from Farms +WHERE F14_items_owned IS NOT NULL +; +``` + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- You should expect missing data +- You need to know how missing data is being represented in your dataset +- Database systems always represent what they consider to be missing data as `NULL` +- You can explicitly test for `NULL` values in your data +- You may need other tests for different representations of `NULL` + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/05-creating-new-columns.md b/05-creating-new-columns.md new file mode 100644 index 00000000..9cbe858e --- /dev/null +++ b/05-creating-new-columns.md @@ -0,0 +1,335 @@ +--- +title: Creating New Columns +teaching: 15 +exercises: 15 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Create new columns in the query output +- Rename columns in the query output +- Use built-in functions to create new values +- Use SQL syntax to conditionally create new values +- Use SQL syntax to create a new column of ‘binned’ values + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- How can I add new columns with derived values in the query results? +- How can I give a column a new name? +- How do I use built-in functions to create new values? +- How can I create binned results? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Creating new columns + +In addition to selecting existing columns from a table, you can also create new columns in the query output based on the existing columns. +These new columns only exist in the output. The table used in the query is not changed in any way. + +The Plots table contains a column, `D02_total_plot` representing the area of the plot and the `D03_unit_land` column gives the units. In our sample dataset the unit is always 'hectare'. +However in the full dataset some of the plot areas are recorded in 'acres'. We want to create a new output column which shows the hectare value converted into acres. +To do this we could use the following SQL. ( 1 hectare = 2.4701 acres) + +```sql +SELECT D02_total_plot * 2.4701 +FROM Plots +; +``` + +Running this query will give the correct answers, but it uses the expression used in creating the new column as the column name. +This looks very messy, especially if the expression is long. +It is always the case that if you create a column in the results of the query it won't have a name by default. +SQL will create one for it. Other relational databases take different approaches to the problem and will pseudo-randomly name the new columns for you with such things as '\_c0'. +SQLite uses the expression you used to create the column name. + +## Renaming columns using aliases + +Given that creating new columns is so commonly done, SQL does provide a mechanism for giving them names of your choice. This is done using the **AS** clause + +```sql +SELECT D02_total_plot * 2.4701 AS D02_total_plot_converted +FROM Plots +; +``` + +The **AS** keyword itself is optional. You can just put the name of the new column, but using the **AS** keyword adds clarity. +Creating column names in this way is referred to as adding an alias. +This may seem a bit strange for columns which had no real name in the first place, but the point is, you can give any table column name an alias to be used in the output rather than the original. + +## Using built-in functions to create new values + +In addition to using simple arithmetic operations to create new columns, you can also use some of the SQLite built-in functions. +Full details of the available built-in functions are available from the SQLite.org website [here](https://sqlite.org/lang_corefunc.html#instr). + +We will look at some of the arithmetic and statistical functions when we deal with aggregations in a later lesson. + +You may have noticed in the output from are last query that the number of decimal places can change from one row to another. In order to make the output +more tidy, we may wish to always produce the same number of decimal places, e.g. 2. We can do this using the `ROUND` function. + +The `ROUND` function works in a similar way as its spreadsheet equivalent, you specify the value you wish to round and the required number of decimal places. + +```sql +SELECT ROUND(D02_total_plot * 2.4701, 2) as D02_total_plot_converted +FROM Plots +; +``` + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +Write an SQL query which returns the Id, plot\_Id, D01\_curr\_plot and D02\_total\_plot columns from the Plots table with the addition of a calculated column +representing the plot area in acres and a column representing the units of the calculated column. + +::::::::::::::: solution + +## Solution + +```sql +SELECT Id, plot_Id, D01_curr_plot, D02_total_plot, + ROUND(D02_total_plot * 2.4701, 2) AS D02_total_plot_converted, + 'acres' AS D03_unit_land_converted +FROM Plots +; +``` + +Notice that we can use columns as part of the calculated column which are not returned in the output. +Also our second new column doesn't actually need to make use of any of the other columns, it can just be a value. + + + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +We will now look at a couple of the more common text functions. +These have equivalents in other programming languages or spreadsheet systems, +sometimes with different names. + +| SQLite function | Excel equivalent | +| --------------- | :--------------- | +| substr(a,b,c) | mid(a,b,c) | +| instr(a,b) | find(a,b) | + +`instr` can be used to check a character or string of characters occurs within another string. +`substr` can be used to extract a portion of a string based on a starting position and the number of characters required. + +In the Farms table, the three columns A01\_interview\_date, A04\_start and A05\_end are all recognisable as a dates with the A04\_start and A05\_end also including times. +These last two are automatically generated by the eSurvey software when the data is collected, i.e. they are automatically entered. The A01\_interview\_date however is manually input. +In all three cases however SQLite thinks that they are all just strings of characters. +We can confirm this by selecting the `Database Structure` tab and expanding the `Farms` entry and notice that the data type for all three columns is listed as 'TEXT' + +To see what these columns look like you can run the following query; + +```sql +SELECT A01_interview_date, A04_start, A05_end +FROM Farms +; +``` + +The format of the A04\_start and A05\_end columns follow the [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601). The A01\_interview\_date column on the other hand uses the shorthand dd/mm/yyyy format. + +The drawback of having dates represented by strings occurs when you want to sort them. +In SQL you can sort the output of your query by using an `ORDER BY` clause at the end of the select statement. + +```sql +SELECT A01_interview_date +FROM Farms +ORDER BY A01_interview_date +; +``` + +NB. we are using the UK and European representation of dates in this discussion. The same issue will occur if you were using US date formats. + +It is unlikely that the result of the above query is what you wanted. '01/07/2017' has been ordered before '01/12/2016'. This is because the sorting process treats the dates as simple strings +and a '0' in the month position is less than a '1' in the months position. + +In order to sort the A01\_interview\_date column into date order we need to make SQLite see it as a date. +SQLite does have a date function. Unfortunately by itself, it won't work on A01\_interview\_date. + +```sql +SELECT A01_interview_date, + date(A01_interview_date) AS converted_A01, + A04_start, + date(A04_start) AS coverted_A04 +FROM Farms +; +``` + +Although it doesn't produce an error, the attempted conversion of A01\_interview\_date into a date format has failed. A set of NULLs was returned. + +![](fig/SQL_05_dates_01.png){alt='Conversion failure'} + +On the other hand the A04\_start conversion did work. The problem is that the date function expects the string to be converted to be in a certain format like ISO-8601. + +We need to change the way A01\_interview\_date looks. Instead of dd/mm/yyyy we need yyyy-mm-dd. To do this we can use the `substr` function along with the `||` +operator which is used to concatenate strings together. + +We can extract individual parts of the date like this; + +```sql +SELECT A01_interview_date, + substr(A01_interview_date,7,4) as year, + substr(A01_interview_date,4,2) as month, + substr(A01_interview_date,1,2) as day +FROM Farms +; +``` + +But in order to convert it into a date we need all three parts concatenated together along with '-' to separate the parts. + +```sql +SELECT A01_interview_date, + substr(A01_interview_date,7,4) || '-' || + substr(A01_interview_date,4,2) || '-' || + substr(A01_interview_date,1,2) as converted_date +FROM Farms +; +``` + +We can then convert our new string containing the date into a proper date by passing it to the `date` function. + +```sql +SELECT A01_interview_date, + date( + substr(A01_interview_date,7,4) || '-' || + substr(A01_interview_date,4,2) || '-' || + substr(A01_interview_date,1,2) + ) as converted_date +FROM Farms +; +``` + +We can now use our `converted_date` column to sort by + +```sql +SELECT A01_interview_date, + date( + substr(A01_interview_date,7,4) || '-' || + substr(A01_interview_date,4,2) || '-' || + substr(A01_interview_date,1,2) + ) as converted_date +FROM Farms +ORDER BY converted_date +; +``` + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +Change the query above to sort by the `A01_interview_date` field and compare the results + +::::::::::::::: solution + +## Solution + +```sql +SELECT A01_interview_date, + date( + substr(A01_interview_date,7,4) || '-' || + substr(A01_interview_date,4,2) || '-' || + substr(A01_interview_date,1,2) + ) as converted_date +FROM Farms +ORDER BY A01_interview_date +; +``` + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +In the Spreadsheets lesson we discussed that splitting dates into year, month and day components was a good way of making +the meaning of the date parts unambiguous. Our first SQL query for the date conversion did this; + +```sql +SELECT A01_interview_date, + substr(A01_interview_date,7,4) as year, + substr(A01_interview_date,4,2) as month, + substr(A01_interview_date,1,2) as day +FROM Farms +; +``` + +Having the date components split in this way does not prevent us from sorting them. We just need to specify all of the columns we want to sort by in the order +in which we want them sorted. + +```sql +SELECT A01_interview_date, + substr(A01_interview_date,7,4) as year, + substr(A01_interview_date,4,2) as month, + substr(A01_interview_date,1,2) as day +FROM Farms +ORDER BY year, month, day +; +``` + +By default the `ORDER BY` clause will sort in ascending order, smallest to +biggest; we can make this explicit by usingthe `ASC` keyword. Or if we want to +sort in descending order we can use the `DESC` keyword. + +```sql +SELECT A01_interview_date, + substr(A01_interview_date,7,4) as year, + substr(A01_interview_date,4,2) as month, + substr(A01_interview_date,1,2) as day +FROM Farms +ORDER BY year DESC, month DESC, day DESC +; +``` + +## Using SQL syntax to conditionally create new values + +This format of the case statement allows you to check if various values **are equal** to the value in the field given after the `CASE` keyword. + +```sql +SELECT Id, country, + CASE country + WHEN 'Moz' THEN 'Mozambique' + WHEN 'Taz' THEN 'Tanzania' + ELSE 'Unknown Country' + END AS country_fullname +FROM Farms +; +``` + +There is a more general form which allows to to perform any kind of test. + +## Using SQL syntax to create ‘binned' values + +It is often the case that we wish to convert a continuous variable into a discrete factor type variable. + +We can use a `CASE` statement to create this type of effect. + +The column `A11_years_farm` in the Farms table is an indication of how many years the respondent has been on the farm. The values are in years and range from 1 to 60. +Instead of using individual years we may want to group these values into ranges like 1-10, 11-20 etc. We can do this using a `CASE` +statement as part of the `SELECT` clause + +```sql +SELECT Id, A11_years_farm, + CASE + WHEN A11_years_farm BETWEEN 1 AND 10 THEN '1-10' + WHEN A11_years_farm BETWEEN 11 AND 20 THEN '11-20' + WHEN A11_years_farm BETWEEN 21 AND 30 THEN '21-30' + WHEN A11_years_farm BETWEEN 31 AND 40 THEN '31-40' + WHEN A11_years_farm BETWEEN 41 AND 50 THEN '41-50' + WHEN A11_years_farm BETWEEN 41 AND 50 THEN '51-60' + ELSE '> 60' + END AS A11_years_farm_range +FROM Farms +; +``` + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- New result columns can be created using arithmetic operators or built-in functions +- New columns have to be given names or aliases +- The `CASE` coding structure can be used to create new columns +- The new columns are only in the query results. The original table is not changed + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/06-aggregation.md b/06-aggregation.md new file mode 100644 index 00000000..161c6541 --- /dev/null +++ b/06-aggregation.md @@ -0,0 +1,224 @@ +--- +title: Aggregations +teaching: 10 +exercises: 10 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Use the Distinct keyword to get a unique set of values +- Use the ‘group by’ clause to summarise data +- Use built-in statistical functions to provide column summaries +- Use the ‘having’ clause to provide selection criteria to the summary values +- Understand the difference between the ‘where’ and the ‘having’ clauses + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- How can I summarise the data in my tables + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Using built-in statistical functions + +Aggregate functions are used perform some kind of mathematical or statistical calculation across a group of rows. The rows in each group are determined +by the different values in a specified column or columns. Alternatively you can aggregate across the entire table. + +If we wanted to know the minimum, average and maximum values of the 'A11\_years\_farm' column across the whole Farms table, we could write a query such as this; + +```sql +SELECT + min(A11_years_farm), + max(A11_years_farm), + avg(A11_years_farm) +FROM Farms; +``` + +This sort of query provides us with a general view of the values for a particular column or field across the whole table. + +`min` , `max` and `avg` are built-in aggregate functions in SQLite (and any other SQL database system). There are other such functions available. +A complete list can be found in the SQLite documentation [here](https://sqlite.org/lang_aggfunc.html). + +It is more likely that we would want to find such values for a range, or multiple ranges of rows where each range is determined by the +values of some other column in the table. Before we do this we will look at how we can find out what different values are contained in a given column. + +## The `DISTINCT` keyword + +For the SAFI survey, it was known in advance all of the possible values that certain variables of columns could contain. For example +the 'A06\_province', 'A07\_district', 'A08\_ward' and 'A09\_village' variables +could only ever contain a few specific values. + +As the SAFI survey was delivered via an Android phone app. It was possible to create the app so that the possible values could be +selected from a dropdown list, eliminating any possibility of typing errors. For the 'A06\_province' there were only three possibilities, but +by the time we get down to 'A09\_villages', a far more specific geography, it would not have been possible to anticipate in advance all of the possible values (village names) +and so the values for this field were manually typed in. + +To obtain a list of unique values in a particular column we can use the `DISTINCT` keyword. + +Using the Farms table we will obtain a list of all of the different values of the 'A06\_province' column contained in the table. + +```sql +SELECT DISTINCT A06_province +FROM Farms; +``` + +We can see from the results of running this that all 3 values are represented and that there is no missing data in this field. + +However if we run a similar query for 'A09\_village' + +```sql +SELECT DISTINCT A09_village +FROM Farms; +``` + +We get + +![](fig/SQL_06_villages.png){alt='Villages'} + +The problem with allowing free-form text quite obvious. Having two villages, one called 'Massequece' and the other called 'Massequese' is unlikely. + +Detecting this type of problem in a large dataset can be very difficult if you are just 'eyeballing' the content. This small SQL query makes it very clear, +and in the OpenRefine lesson we provide approaches to detecting and correcting such errors. SQL is not the best tool for correcting this type of error. + +You can have more than one column name after the `DISTINCT` keyword. In which case the results will include a row for each unique **combination** of the columns involved + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +Write a query that will return all of the different combinations of the +'A06\_province', 'A07\_district', 'A08\_ward' and 'A09\_village' columns in the Farms table. + +When looking at the results, you may have noticed that they are not in any sorted order. Re-write the query so that the values of the four columns +are returned in alphabetical order. + +::::::::::::::: solution + +## Solution + +```sql +SELECT DISTINCT A06_province, A07_district, A08_ward, A09_village +FROM Farms +ORDER BY A06_province, A07_district, A08_ward, A09_village; + +``` + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## The `GROUP BY` clause to summarise data + +Just knowing the combinations is of limited use. You really want to know **How many** of each of the values there are. +To do this we use the `GROUP BY` clause. + +```sql +SELECT A08_ward, + count(*) AS How_many +FROM Farms +GROUP BY A08_ward; +``` + +This query tells us how many records in the table have each different value in the 'A08\_ward' column. + +In the first example of this episode, three aggregations were performed over the single column 'A11\_years\_farm'. +In addition to calculating multiple aggregation values over a single column, it is also possible to aggregate over multiple columns by specifying +them in all in the `SELECT` clause **and** the `GROUP BY` clause. + +The grouping will take place based on the order of the columns listed in the `GROUP BY` clause. There will be one row returned for each unique combination of the columns mentioned in the `GROUP BY` clause + +What is not allowed is specifying a non-aggregated column in the select clause which is not mentioned in the group by clause. + +```sql +SELECT A06_province, + A07_district, + A08_ward, + A09_village, + count(*) AS How_many +FROM Farms +GROUP BY A06_province, A07_district, A08_ward, A09_village +; +``` + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +Write a query which returns the min, max and avg values as well as a count of the number of records involved +for the 'A11\_years\_farm' column for each village in the 'Nhamatanda' district. + +::::::::::::::: solution + +## Solution + +``` +SELECT A09_village, + min(A11_years_farm) AS min, + max(A11_years_farm) AS max, + avg(A11_years_farm) AS avg, + count(*) AS how_many +FROM Farms +WHERE A07_district = 'Nhamatanda' +GROUP BY A09_village; +``` + +Notice that you can use the 'A07\_district' column in the `WHERE` clause but it doesn't have to appear in the `SELECT` clause. + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Using the `HAVING` clause + +In order to filter the rows returned in a non-aggregated query we used the `WHERE` clause. For an aggregated query the equivalent is the `HAVING` clause. + +You use the `HAVING` clause by providing it with a filter expression which references one or more of the aggregated columns. + +In a `HAVING` clause you can use the column alias to refer to the aggregated column. + +```sql +SELECT A08_ward, + min(A11_years_farm) AS min_years, + max(A11_years_farm) AS max_years, + count(*) AS how_many_farms +FROM Farms +GROUP BY A08_ward +HAVING how_many_farms > 2; +``` + +In this example we want to remove the wards which only have one or two farms. + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +Using the Crops table write a query which will list all of the crops (D\_curr\_crop) which are grown in over 100 plots. + +::::::::::::::: solution + +## Solution + +```sql +SELECT D_curr_crop, + count(*) AS how_many +FROM Crops +GROUP BY D_curr_crop +HAVING how_many > 100 +; +``` + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- Built-in functions can be used to produce a variety of summary statistics +- The `DISTINCT` keyword can be used to find the unique set of values in a column or columns +- Data in columns can be summarised by values using the `GROUP BY` clause +- Summarised data can be filtered using the `HAVING` clause + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/07-creating-tables-views.md b/07-creating-tables-views.md new file mode 100644 index 00000000..5c862169 --- /dev/null +++ b/07-creating-tables-views.md @@ -0,0 +1,232 @@ +--- +title: Creating tables and views +teaching: 20 +exercises: 10 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Understand the differences and similarities between Tables and Views +- Create table schemas using DB Browser for SQLite +- Create table schemas and views using SQL code +- Populate a table using SQL code +- Populate a table from a file of data using DB Browser for SQLite + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- What is the difference between a table and a view? +- How can I create a table using the DB Browser for SQLite? +- How can I create a table or view in DB Browser for SQLite using SQL code? +- How can I add records of data to a table? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Using SQL code to create tables + +In relational databases, tables have to be created before you can add data to them. +The table definition that you create is referred to as the **Schema** of the table. + +The schema can contain many different properties of the table and the data that it does/will contain. +In its simplest form you only need to specify a name for the table and a list of the column names and the data types for each of those columns. + +In this episode we will also show how the Farms, Plots and Crops tables were created and populated from csv files. +When we do this using DB Browser, it appears to be a single step process, much like importing a file into Excel. In fact it is always a two step process. +First............... + +## Using the DB Browser application to create tables + +So far we have created and populated tables from scratch or created tables from existing tables. +But initially your data is likely to be external to the relational database system in a set of simple files. +Typically in CSV (comma separated values) or Tab delimited format. + +All relational database systems will have some utility which will allow you to import such files into tables in the database. +The DB Browser application has a nice GUI (Graphical Use Interface) to allow you to do this. + +The Farms, Plots and Crops tables that we have been using were created in the DB Browser application by importing a CSV +file containing the data. + +For large datasets this is a very common approach. + +1. From the File menu select 'Import' and then 'Table from CSV file'. + This will start the 'Import CSV file' wizard and you will be asked to select the file of data you wish to import from a standard Windows file open dialog. + +2. After you have selected the file, you will be shown the 'Import CSV file' window which will allow you to set a name for the table (the default is taken from the filename). You will see the first few rows of the data and there are a few options which can be changed if needs be. + +![](fig/SQL_07_Import_wizard_01.png){alt='Import table'} + +In our case all of the options are correctly set. If your file was in Tab delimited format, you would need to change the 'Field separator' option to 'Tab'. +If your file did not have a header row with column names you would un-check the appropriate box and DB Browser will allocate names for the columns. +(You can change them to more meaningful names yourself after the import is complete) + +3. When you click OK, a table will be created and the data loaded into the table. + +Unfortunately this Import wizard in DB Browser does not do, or allow you to do everything that you might want when creating a table. +The most obvious potential problem is that we were not allowed to specify the data types to be associated with each of the columns in the table. However, +DB Browser will attempt to work out the appropriate data types based on the values in the first few rows of the data. This is a very common approach. +(Earlier versions of DB Browser didn't do this, it just imported all of the columns as 'Text' data types.) +If you go to the table in the Database Structure tab and click the '>' you will see all of the fields and they are all listed as either Text or Integer fields. + +If any of the datatypes are not as expected or wanted we can change them. + +4. Select the newly created table in Database Structure tab and click the 'Modify Table' button in the toolbar. The 'Edit Table Definition' dialog will appear. + +![](fig/SQL_07_Import_Wizard_02.png){alt='Modify Table'} + +In this particular case DB Browser correctly selected the datatypes. Notice that the `A01_interview_date` was allocated a datatype of 'TEXT'. This isn't a problem +as we have to use the Date and Time functions to manipulate dates anyway. + +Notice that the bottom pane in the Window shows the SQL DDL statement that would create the table that you modifying. + +When you change one of the columns from TEXT to INTEGER, this is immediately reflected in the Create Table statement. +It is slightly misleading because in fact we are modifying an existing table and in SQL-speak, this would be an **Alter Table...** statement. +However it does illustrate quite well the fact that whatever you do in the GUI, it is essentially translated into an SQL statement and executed. +You could copy and paste this definition into the SQL editor and if you change the table name before you ran it, you would create a new table with that name. +This new table would have no data in it. This is how the insert table wizard works. It uses the header row from your data to create a `CREATE TABLE` statement which it runs. +It then transforms each of the rows of data into SQL `INSERT INTO...` statements which it also runs to get the data into the table. + +In addition to changing the data types there are several other options which can be set when you are creating of modifying a table. +For our tables we don't need to make use of them but for completeness we will describe what they are; + +**PK** - Or Primary Key, a unique identifier for the row. In the Farms table, there is an `Id` column which uniquely identifies a Farm. +This could act as a unique identifier for the row as a whole. We could mark this as the primary key if we wanted to. + +**AI** - Or Auto Increment. This isn't really applicable to tables created in this way, i.e. the creation of the schema immediately followed by loading data from a file. It is usually used to generate unique values for a column which could then act as a primary key. If you have an 'Auto Increment' column in a table, when you insert values you would not supply a value for the column as SQLite will automatically provide a value for each row added. + +**Not Null** - If this is checked then it means that there must be a value for each row in this column. If it is **not** set and there is no value provided in the data then it will be set to 'NULL' which means 'I know nothing about what should be here'. (Not the string 'NULL' but the NULL value) + +In real datasets missing values are quite common and we have already looked at ways of dealing with them when they occur in tables. If you were to **check** this box and the data did have missing values for this column, the record from the file would be rejected and the load of the file will fail. + +**U** - Or Unique. This allows you to say that the contents of the column, which is not the primary key column has to have unique values in it. Like Allow Null this is another way of providing some data validation as the data is imported. Although it doesn't really apply with the DB Browser import wizard as the data is imported before you are allowed to set this option. + +**Default** - This is used in conjunction with 'Not Null', if a value is not provided in the dataset, then if provided, the default value for that column will be used. + +**Check** - This allows you to specify a constraint on the values entered for the column. You could restrict the range of values or compare the value with other columns values. + +These three options, 'Not Null', 'Unique' and 'Default' , need to be used with caution and certainly their use needs to be fully documented and explained. + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +From the Modify table dialog, change the `Id` column in the `Farms` table to be the primary key. +What difference did it make in the `CREATE TABLE` statement? + +::::::::::::::: solution + +## Solution + +You need to scroll down to the bottom of the `CREATE TABLE` statement to see the + +```sql + PRIMARY KEY(`Id`) +``` + +line added. + + + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Creating a table using an SQL command + +You could copy and paste this definition into the SQL editor and if you change the table name before you ran it, you would create a new table with that name. +This new table would have no data in it. This is how the insert table wizard works. It uses the header row from your data to create a `CREATE TABLE` statement which it runs. +It then transforms each of the rows of data into SQL `INSERT INTO...` statements which it also runs to get the data into the table. + +For small tables defining them and populating them with data in this way may be acceptable. +But for larger tables this approach not only to defining the tables but adding potentially thousands of rows of data can be somewhat impractical. + +## Creating tables from other tables + +Whenever you write a Select query and run it, the results are always in the form of a table. +In the results pane, you can see the column names and the rows of data in the results. + +This provides a very easy way of creating a new table based on the results of a query. + +The following query selects a few of the columns from the Farms table: + +```sql +SELECT Id, + Country, + A06_province, + A07_district, + A08_ward, + A09_village +FROM Farms; +``` + +If you want to make the results of this query into a new table, you can do so by simply prefixing the `SELECT` with **CREATE TABLE NewTablename AS** like this: + +```sql +CREATE TABLE Farms_location AS +SELECT Id, + Country, + A06_province, + A07_district, + A08_ward, + A09_village +FROM Farms; +``` + +If we wanted to create a table from the Crops table which contains only the rows where the D\_curr\_crop value was 'rice' we could use a query like this: + +```sql +CREATE TABLE crops_rice AS +SELECT * +FROM Crops +WHERE D_curr_crop = 'rice' +; +``` + +Here we want all of the columns from the Crops table but only if the D\_curr\_crop value is 'rice'. + +**Note**: please ensure that you run the code above as we will use this new table in a later episode. + +## Using SQL code to create views + +In addition to tables all relational database systems have the concept of 'Views'. Views are based on tables. +In the same way that we were able to create a table based on a `SELECT` query, we can create a 'View' in the same way. You just replace 'Table' with 'View'. + +```sql +CREATE VIEW Farms_location AS +SELECT Id, + Country, + A06_province, + A07_district, + A08_ward, + A09_village +FROM Farms; +``` + +Tables and Views are so closely related that if you try to run the code above, although 'Table' has been changed to 'View' you will get an error complaining that the 'Table' already exists. + +It is common practice when creating Views to indicate somewhere in the name that it is in fact a View. e.g. vFarms\_location or Farms\_location\_v. + +Although tables and views can be used almost interchangeably in `SELECT` queries it is important to note that a `View` unlike a `Table` contains no data. +It is essentially the SQL statement needed to produce that data from the underlying data. +This means that when you use a View there is the overhead of having to run this SQL first. +Although in practice the Database system will combine the SQL required by the View and the other SQL in your query so as to optimise how the SQL is executed. + +The advantage of using Views is that it allows you to restrict how you see the data in a table. +In the example we used above it may be far easier to work with only the 6 columns that we need from the full Farms table +rather than the full table with 61 columns. + +A View isn't restricted to simple `SELECT` statements it can be the result of aggregations and joins as well. +This can help reduce the complexity of queries based on the View and so aid readability. + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- Database tables can be created using the DDL command `CREATE TABLE` +- They can be populated using the `INSERT INTO` command +- The SQLite plugin allows you to create a table and import data into it in one step +- There are many options available to the `CREATE TABLE` command which allows greater control over how or what data can be loaded into the table +- A View can be treated just like a table in a query +- A View does not contain data like a table does, only the instructions on how to get the data + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/08-sqlite-command-line.md b/08-sqlite-command-line.md new file mode 100644 index 00000000..0a6e7575 --- /dev/null +++ b/08-sqlite-command-line.md @@ -0,0 +1,178 @@ +--- +title: The SQLite command line +teaching: 15 +exercises: 10 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Use the SQLite shell to re-run a file of SQL code +- Save the output from the SQLite shell to a file + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- How can I save my code in a file and run it again? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Running SQL code using the SQLite shell + +Before you can run the SQLite3 shell program you must have installed it. Instructions for doing this are included in +the [set up procedures](../learners/setup.md). + +I will assume that you have added the location of the program to your local PATH environment variable as this +will make it easier to refer to the database file and other files we may want to use. + +The instructions in this episode are written from a Windows user perspective. If you are using Linux or a Mac, +open a terminal window instead a command prompt. + +1. Open a command prompt (cmd.exe) and 'cd' to the folder location of the SQL\_SAFI.sqlite database file. +2. run the command 'sqlite3' This should open the SQLite shell and present a screen similar to that below. + +![](fig/SQL_08_SQLite_shell.png){alt='SQLite shell'} + +3. By default a "transient in-memory database" is opened. You can change the database by use of the *.open* command + +```bash +.open SQL_SAFI.sqlite +``` + +It is important to remember the .sqlite suffix, otherwise a new database simply called SQL\_SAFI would be created + +4. Once the database is opened you can run queries by typing directly in the shell. Unlike in DB Browser, + you must always terminate your select command with a ";". This is how the shell knows that **You** think the statement is complete. Although easy to forget, it generally works to your advantage as it allows you to split a long query command across lines as you did in the DB Browser application. + +![](fig/SQL_08_SQLite_shell_query_example.png){alt='SQLite shell query example'} + +The output from the query is displayed on the screen. If we just wanted to look at a small selection of data this +may be OK. It is however more likely that not only are the results from the query somewhat larger, +but also we would prefer to save the output to a file for later use. There are some other changes to the output format that we might want to change as well. +for example; change the field separator from the default "|" to a comma and provide column headers. This will make the +output more like a standard csv file. + +Notice that the `NULL` values in columns 6 and 8 are just left empty, two consecutive delimiters, just as they are in a csv file. + +We can make the changes we want by using further "dot" commands. + +There are in fact a large number of "dot" commands and they are all explained in the official SQLite documentation [here](https://sqlite.org/cli.html). One you will have to use at some point is `.quit` which will end the SQLIte shell program. + +The commands we need are + +```bash +> .mode csv +``` + +to change the field separator to ",". There are many other modes available see the [documentation](https://sqlite.org/cli.html). + +```bash +> .header on +``` + +to show the column headers + +```bash +> .output my.filename +``` + +to direct the output to a file of my choice. +The file will be created if needed or it will overwrite an already existing file, so exercise care. + +![](fig/SQL_08_SQLite_shell_dot_commands.png){alt='SQLite shell dot commands'} + +Yes you can have a file called "my.filename" if you want. The contents of which contains the expected output from the query. + +![](fig/SQL_08_my_filename.png){alt='SQLite my.filename'} + +Notice the use of quotes in the rows where the value of the data item themselves contain quotes; in this case single quotes. + +## Automating the use of the SQLite shell + +So far we have used the shell in much the same way as we might have used the DB Browser application. +We run the program, connect to a database, run a query and save the output. +Because the shell will accept any valid SQL statements as well as have numerous 'dot' commands of it own +to configure how it works it could be considered as powerful as the DB Browser application. +You could use it as a replacement in most cases. + +Most people prefer to work with nice point and click interfaces, so why would you want to use the shell rather than the DB Browser application? + +The shell has one distinct advantage over DB Browser; you can run the shell program and in the call to the program provide a parameter indicating +the database to connect to and provide a file of the commands that you want to execute. The shell will execute the file of commands and then exit. + +Here is an example + +1. create a file `commands.sql` containing the following content: + +```sql +result.csv +.mode csv +.output results.csv +.open SQL_SAFI.sqlite +SELECT * from Farms where A09_village='God'; +``` + +2. run the sqlite3 program in the following way + +```sh +$ sqlite3 < commands.sql +``` + +Notice that there is no output to the screen and that the shell is closed. The results of running the query have been placed in the results.csv file. + +There are two key advantages of using this approach. + +1. It aids automation. It would be straightforward to have the one line command line instruction to be run automatically, perhaps on a timed basis. The SQL statements in the executed file doesn't have to be a simple query. It could be appending rows of data to a series of tables which become available on a regular basis. + +2. It aids reproducibility. Although it is convenient to use the DB Browser application to play around and try things out, eventually you will decide on approach, create relevant queries to perform your analysis or research and at this point you will need to ensure that the complete sequence is documented and is reproducible. This is what the file of SQLite commands will do for you. + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +The query + +```sql +SELECT * from Farms WHERE C01_respondent_roof_type = 'grass'; +``` + +returns all of the records from the Farms table which have a roof made of grass. + +Create a file of SQL statements and SQLite shell commands to create 3 files each containing the output from queries like the above but for all three different +roof types (grass, mabatisloping and mabatipitched) + +::::::::::::::: solution + +## Solution + +The contents of your file should be something like this: + +```output +.mode csv +.output grass_roofs.csv +select * from Farms where C01_respondent_roof_type = 'grass'; +.output mabatisloping_roofs.csv +select * from Farms where C01_respondent_roof_type = 'mabatisloping'; +.output mabatipitched_roofs.csv +select * from Farms where C01_respondent_roof_type = 'mabatipitched'; +``` + +The command to run it from the command line is: + +```bash +sqlite3 SQL_SAFI.sqlite < SQLite_commands.sql +``` + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- SQLite databases can be created, managed and queried from the SQLite shell utility +- You can run the shell interactively from the command line, typing queries or dot commands at the prompt +- You can call the SQLite3 program and specify a database and a set of commands to run. This aids automation + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/09-joins.md b/09-joins.md new file mode 100644 index 00000000..19c8a323 --- /dev/null +++ b/09-joins.md @@ -0,0 +1,275 @@ +--- +title: Joins +teaching: 20 +exercises: 10 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Understand the structure of a joined table +- Familiarity with the different join types +- Use different join types in analysing your data +- Understand what other join types can tell you about your data + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- What is meant by joining tables? +- Why would I want to join tables? +- What different types of joins are there? +- How do Joins help you discover missing data or gaps in the data + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## About table joins + +In any relational database system, the ability to join tables together is a key querying requirement. +Joins are used to combine the columns from two (or more) tables together to form a single table. +A join between tables will only be possible if they have at least one column in common. +The column doesn't have to have the same name in each table, and quite often they won't, but they do have to have a common usage. + +In the SAFI database we have three tables. Farms, Plots and Crops. Each farm has a number of plots (or fields) and each plot can be used to grow different crops. +A question you might ask is: Which Farms with more than 12 people in the household grow Maize? No single table has the answer to this question. + +We can write queries to answer each part separately + +```sql +-- how many crops of Maize? +SELECT * +FROM Crops +WHERE D_curr_crop = 'maize' +; +``` + +![](fig/SQL_09_maize.png){alt='Maize'} + +and + +```sql +-- Which farms have more than 12 in the Household +SELECT Id, B_no_membrs +FROM Farms +WHERE B_no_membrs > 12 +; +``` + +![](fig/SQL_09_maize.png){alt='Maize'} + +In order to answer the question we need information from both tables at the time, i.e. from a single query. +Notice that in the tables returned by both of the above queries we have the `Id` column. +This column represents the Household or Farm in both of the tables. Because of this we can use this `Id` column from both tables to `JOIN` +the tables together. + +Providing we are confident that both of the columns represent the household (or farm) it doesn't matter whether or not they have the same name. + +We write a `JOIN` query like this: + +```sql +SELECT a.Id, a.B_no_membrs, + b.Id, b.D_curr_crop +FROM Farms AS a +JOIN Crops AS b +ON a.Id = b.Id AND a.B_no_membrs > 12 AND b.D_curr_crop = 'maize' +; +``` + +There are several things to notice about this query: + +1. We have used alias' for the table names in the same way as we used with columns in a previous lesson. In this case though, it is not to provide + more meaningful names, in fact alias' for tables are often single letters to save key strokes. +2. We use the table alias as a prefix, plus a '.' when we refer to a column name from the table. You don't have to do this, but it generally adds clarity to the query. +3. You will need to use an alias when you need to refer to a column with the same name in both tables. In our case we need to compare the `Id` column in both tables. +4. In the select clause, we list all of the columns, from both table that we want in the output. We use the alias' for clarity. If the column name is not ambiguous, i.e it only occurs in one of the tables it + can be omitted, but as we have said it is better to leave it in for clarity. +5. The name of the second table is given in the `JOIN` clause. +6. The conditions of the `JOIN` are given in the `ON` clause. The `ON` clause is very much like a `WHERE` clause, in that you specific expressions which restrict what rows + are output. In our example we have three expressions. The last two are the individual expressions we used in the previous, single table queries. The first + expression `a.Id = b.Id` is the expression which determines how we want the two tables to be joined. + We are only interested in rows from both table where the `Id` values match. + +When we run this query we get output like the following: + +![](fig/SQL_09_join1.png){alt='Join1'} + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +1. The output includes the `Id` column from both tables, how could you have distinguished between them when you wrote the query? +2. Can you explain why there are two rows for `Id` 111? Can you change the query so that these two different rows are being correctly displayed? + +::::::::::::::: solution + +## Solution + +```sql +SELECT a.Id AS Farms_Id, a.B_no_membrs, + b.Id AS Crops_Id, b.plot_Id, b.D_curr_crop +FROM Farms AS a +JOIN Crops AS b +ON a.Id = b.Id AND a.B_no_membrs > 12 AND b.D_curr_crop = 'maize' +; +``` + +1. we can add alias' to the two `Id` columns to distinguish them. +2. by adding the `plot_Id` column from the Crops table. It is clear that `Id` 111 has two plots (plot 1 and plot 2) growing maize. + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Different join types + +The example of a join given above is called an **INNER** join, we could have written **INNER JOIN** rather than +simply **JOIN**. This is almost never done in practice as the inner join is by far the most common join type used. + +Other Join types are available... + +Before we look at the other join types we need to explain how the **Inner join** works and why it is so commonly used. + +For any join (type) we are defining a relationship between two tables based on the data values in two columns, one from each table. +The relationship is given by the criteria in the `ON` clause. +The value of the column in one table must be same as that in the other table. That is; the criteria is given in the form +`value_in_column_from_table_a = value_in_column_from_table_b`. +Only if this criteria is TRUE will the requested columns from table\_a and table\_b be returned as a single row in the output. +During the join process each row of the first with every row of the second and if a match is found then a row combining the columns from both +tables is output. + +Although typically the values being matched from the first table are a unique (Distinct) set of values, the values in the second table don't have +to be unique. This is why in the results of our previous query there are two entries with Id 111. In the second table there are two records with Id 111 and so the record from the first table gets combined with both the records in +the second table and two records are output. + +Because every Farm grows some crops, there will be at least one record for each Id output. I for whatever reason the was a Farm with no crops +then there would be no record output for that Farm Id. Similarly if there was an entry in the Crops table with an Id which didn't match any of the Ids in the Farms table, +then it would not be output. There is only an output record when the two columns have matching values. + +When a relational database is defined and the tables set up initially the relationship between the tables are already known, +they are part of the design of the overall database. Because of this it is possible to ensure when the data is added to the tables that there will be entries +in both tables which have matching values. At the very least you can prevent rows being added to the second table with a value in the column you intend to join on for which there +is no matching column in the first table. + +An inner join only returns rows where there is a match between the two columns. In most cases this will be all of the columns selected from the first table and 0,1 or more columns selected from the second table. + +The relational design makes use of multiple tables as a way of avoiding repetition of data. Joining tables re-introduces the replication of the data. + +## There are several different join types possible + +| Join Type | What it does | +| ---------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Inner Join | Matched rows in both tables are returned | +| Left outer join | All row in the left hand table are returned along with the matches from the right hand table or NULLs if there is no match | +| Right outer join | All row in the right hand table are returned along with the matches from the left hand table or NULLs if there is no match | +| Full outer join | All rows from both tables are returned, with NULLs where there are no matches | +| Cross join | Each row in the first table will be matched with every row in the second table. It is possible to imagine situations where this is required but in most cases it is a mistake and un-intended. | + +In SQLite only the `INNER JOIN`, the `LEFT OUTER JOIN` and the `CROSS JOIN` are supported. You can create a `Right outer join` by swapping the tables in the `FROM` and `JOIN` clauses. A `Full outer join` is the combination of the Left outer and Right outer joins. + +## Using different join types in analysing your data + +In many cases the data you have in your tables may have come from disparate sources, in that they do not form part of a **planned** relational database. It has been +your decision to bring together (join) the data in the tables. + +In order to do this at all you must be confident that the tables of data do have columns which have a common set of values that you can join on. + +Assuming you do have a common column to join on, you can use an `INNER JOIN` to combine the data. + +However it will also be important for you to establish rows in both of the tables for which there is no matching row in the other table. + +- You may expect some to be missing +- You may not care that some are missing +- You may need to explain why some are missing + +To do this you will want to use a `FULL OUTER JOIN` or in the case of SQLite a `LEFT OUTER JOIN` run twice using both tables in the `FROM` and `JOIN` clauses. We can demonstrate ability +`LEFT OUTER JOIN` using the Crops\_rice table we created earlier. + +The query below is similar to our original join except that we are now joining with the crops\_rice table and we have dropped the additional criteria. + +```sql +SELECT a.Id AS Farms_Id, a.B_no_membrs, + b.Id AS Crops_Id, b.D_curr_crop +FROM Farms AS a +LEFT OUTER JOIN Crops_rice AS b +ON a.Id = b.Id +``` + +You can see from the results that there is an entry for every record in the Farms table, but unless there is a crop of rice, the entries in the columns from the crops\_rice +table are shown as NULL. + +![](fig/SQL_09_Left_Outer_Join_1.png){alt='Left Outer Join1'} + +### Joins with more than two tables + +Joins are not restricted to just two tables. You can have any number, but the more you have the more unreadable the SQL query is likely to become. Quite often you can create views to hide this complexity. + +Our original question was: 'Which Farms with more than 12 people in the household grow Maize?' We found the number of people in the household from the Farms table and the crops they grew in the crops table. +Suppose we now wanted to change the question to be: For Farms with more than 12 people in the household how much land is devoted to growing Maize? In addition to the previous +requirements we now also need the size of the plots growing maize. This information is only contained in the `plots` table. +The `plots` table has both an Id column which we can use to join it with the Farms column. There is also a plot\_Id column which is used to indicate the number of +the plot within the Farm. The `crops` table also has a plot\_id column used for the same purpose. + +However we cannot join the `plots` and the `crops` table with just the `plot_id` column because the `plot_id` column is not unique within the Plots table. The `plot_id` is the +plot number within a Farm. So every Farm will have a plot\_id with the value 1. In order to make what we join on unique we need to use both the Id column and the plot\_id column together. This is allowed and quite +commonly done. + +Our new query now looks like this: + +```sql +SELECT a.Id AS Farms_Id, a.B_no_membrs, + b.Id , b.plot_id AS plot_id, b.D02_total_plot, + c.Id AS Crops_Id, c.plot_Id AS crops_plot_id, c.D_curr_crop +FROM Farms AS a +JOIN Plots AS b +JOIN Crops AS c +ON a.Id = b.Id AND (b.Id = c.Id AND b.plot_id = c.plot_id) AND a.B_no_membrs > 12 AND c.D_curr_crop = 'maize' +; +``` + +Things to notice: + +1. There is a `JOIN` clause for each of the additional tables +2. But there is only one `ON` clause containing all of the needed criteria. +3. The two criteria in brackets represents the join of the `plots` table to the `Crops` table. (The brackets aren't needed, I just added them for clarity). + +The results look like this: + +![](fig/SQL_09_join5.png){alt='Left Outer Join1'} + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +1. Modify the query above so that only the 'Id', 'D02\_total\_plot' and the 'D\_curr\_crop' columns are shown and at the same time summarise the data so that there is only one entry for each Farm. + i.e sum the 'D02\_total\_plot' column. + +::::::::::::::: solution + +## Solution + +```sql +SELECT a.Id AS Farms_Id, + sum(b.D02_total_plot) AS total_planted, + c.D_curr_crop +FROM Farms AS a +JOIN Plots AS b +JOIN Crops AS c +ON a.Id = b.Id AND (b.Id = c.Id AND b.plot_id = c.plot_id) AND a.B_no_membrs > 12 AND c.D_curr_crop = 'maize' +GROUP BY a.Id, c.D_curr_crop +; +``` + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- Joins are used to combine data from two or more tables. +- Tables to be joined must have a column in each which represent the same thing +- There are several different types of joins +- The Inner join is the most commonly use +- You may have to use the other join types to discover missing data or gaps in your data + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/10-other-environments.md b/10-other-environments.md new file mode 100644 index 00000000..1dbd691f --- /dev/null +++ b/10-other-environments.md @@ -0,0 +1,137 @@ +--- +title: Using database tables in other environments +teaching: 15 +exercises: 0 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Understand what ODBC is and when it can be used +- Construct appropriate connection strings +- Appreciate the advantages of using ODBC to access a remote database +- Use an ODBC connection from Excel to retrieve data from a database +- Use ODBC from Python or other programming environment to retrieve data from a database + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- How do I save my query results for use by other programs or applications? +- What are and how do I use ODBC applications? +- How can I access an SQLite database table from other programming environments? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## ODBC and advantages of using it + +ODBC - Open Database Connectivity (or Connector) is a piece of software, often referred to as a *driver*, which allows a database to be connected to an application or program. ODBC drivers are specific to a given database system. As we are using an `SQLite` database we need an SQLite specific ODBC driver to connect to it. + +The installation of the SQLite ODBC driver for a Windows machine is explained in the [SQL setup document](../learners/setup.md) . + +So far in this lesson we have accessed our SQLite database either through the DB Browser application or directly using the command line shell. Each of these methods have their own advantages. The DB Browser application provides a simple GUI (Graphical User Interface), for development and testing new queries. The shell aids automation of tasks such as adding rows to a table or allowing whole scripts of SQL commands to be run consecutively without user intervention. In both of these methods, we have seen that the 'outputs' can be saved to `csv` files from where they can be read into other applications or programs for futher processing. Using ODBC misses out the middle man (the file of output). The application or program connects directly to the SQLite database, sends it an SQL query, receives the output from that query and processes the results in an appropriate fashion. + +In the case of Excel the tabular results of the query are displayed in a worksheet. For R and Python the results are assigned to a suitable variable from where they can be examined or further processed. + +In the following sections we will give examples of using ODBC to connect to Excel and also accessing SQLite from R and Python programs. + +## Connection strings + +A connection string is really just a list of parameters and their values which explain to the ODBC driver what database you wish to connect to and how you wish to use it. For some database systems this might involve providing user credentials as well as specifying which particular database you want to access. For our use of SQLite, the connection string is essentially the full pathname and filename of the SQLite database file. + +How and where the connection string information is provided depends on the ODBC driver and the application or program being used. + +## Connecting to Excel using ODBC + +### Walkthrough example + +1. Open an empty Excel workbook +2. From the Data ribbon select Get Data | From other Sources | From Microsoft Query +3. From the Choose Data Source window select `SQLite3 Datasource` and click **OK**. + +![](fig/SQL_10_DataSource.png){alt='SQL\_10\_DataSource'} + +If this option does not appear in the list, then it probably means that the SQLite ODBC driver has not been installed. + +4. The 'Connect' window is where you specify the connection string information. You can see that there are many things that can be specified. + But all we need to specify is the Database name i.e. the full path and name of the database file. + There is a browse button you can use to navigate to the required file. When you have selected the database file click **OK** + +5. At this point, you may get an a window pop up saying that there are no tables + +![](fig/SQL_10_No_Tables.png){alt='SQL\_10\_No\_Tables'} + +Click **OK** . The Choose Columns Windows appears to support the 'no tables' assertion. + +![](fig/SQL_10_Choose_Columns.png){alt='SQL\_10\_Choose\_Columns'} + +Click on the `options` button and then toggle the **system tables** option and click **OK**, then the tables will appear. + +(There is no technical reason why the above procedure to see the tables should be necessary, it appears to be a fault in the ODBC driver, which fortunately we can work around.) + +![](fig/SQL_10_Choose_Columns_2.png){alt='SQL\_10\_Choose\_Columns\_2'} + +Select the Farms table and then click the '>' button to select all of the columns from the Farms table. +They will be displayed in the right hand pane. This is the equivalent of the `SELECT *` SQL clause that we have used before. +If you click the '+' button to the left of the table name, a full list of the column names is displayed allowing you to select individual columns for inclusion. Click **Next** + +6. Subsequent windows allow you to filter the rows returned, this is equivalent to adding a `WHERE` clause to the query and finally you can have the returned rows sorted, equivalent to a `SORT BY` clause. We shall just default these options. The final window asks us if we want to return the data to Excel or further edit the query we have built up using Microsoft query. We will leave the default action of rturning the data to Excel. Click **Finish** + +The overall effect of this wizard is to construct an SQL query, in this case `SELECT * FROM Farms` send it to the SQLite system to be run and then to recieve back the results. + +![](fig/SQL_10_return_data.png){alt='SQL\_10\_return\_data'} + +7. Although the wizard has finished we still need to say where we want the data placed in our workbook. We will accept the default position of the 'A1' cell in the current workbook. + +![](fig/SQL_10_place_data.png){alt='SQL\_10\_place\_data'} + +The data is returned as an Excel `Table`. All of the columns have their headings included and have filter buttons attached. +You can now manipulate the data in Excel as you would any other data. + +## Connecting to Python or other programming environments using ODBC + +Both Python and R (and many other programming languages) provide methods of connecting to and extracting data from SQLite databases. +Full details and examples are provided in the Python lesson and the R lesson. + +For now we will just look at code examples in Python and R, both of which run the same query as we used for the Excel example above. + +#### Python + +```python +import sqlite3 +con = sqlite3.connect(r'C:/Users/pfsmy/OneDrive/UoM/Carpentry/Datasets/SN7577.sqlite') +cur = con.cursor() +cur.execute("SELECT * FROM SN7577") +rows = cur.fetchall() +for row in rows: + print(row) +con.close() +``` + +#### R + +```r +library("RSQLite") +dbfile = "C:/Users/pfsmy/OneDrive/UoM/Carpentry/Datasets/SN7577.sqlite" +sqlite = dbDriver("SQLite") +mydb = dbConnect(sqlite, dbfile) +results = dbSendQuery(mydb, "SELECT * FROM SN7577") +data = fetch(results) +data +dbClearResult(results) +``` + +We will not discuss the working of the code, that is covered in the Python and R lessons. +Even without coding experience of these languages, you will be able to spot that in both cases we need to specify a connection string (the SQLite database filename) and also the text of the query itself. + +In both cases the results are stored in a variable object of the language. + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- ODBC - Open DataBase Connector allows a database to be connected to a program or application +- Each database system has its own ODBC connectors +- Programs such as Excel allow you to use ODBC to get data from databases +- Programming languages such as Python and R provide libraries which facilitate ODBC connections + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 00000000..f19b8049 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,13 @@ +--- +title: "Contributor Code of Conduct" +--- + +As contributors and maintainers of this project, +we pledge to follow the [The Carpentries Code of Conduct][coc]. + +Instances of abusive, harassing, or otherwise unacceptable behavior +may be reported by following our [reporting guidelines][coc-reporting]. + + +[coc-reporting]: https://docs.carpentries.org/topic_folders/policies/incident-reporting.html +[coc]: https://docs.carpentries.org/topic_folders/policies/code-of-conduct.html diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 00000000..7632871f --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,79 @@ +--- +title: "Licenses" +--- + +## Instructional Material + +All Carpentries (Software Carpentry, Data Carpentry, and Library Carpentry) +instructional material is made available under the [Creative Commons +Attribution license][cc-by-human]. The following is a human-readable summary of +(and not a substitute for) the [full legal text of the CC BY 4.0 +license][cc-by-legal]. + +You are free: + +- to **Share**---copy and redistribute the material in any medium or format +- to **Adapt**---remix, transform, and build upon the material + +for any purpose, even commercially. + +The licensor cannot revoke these freedoms as long as you follow the license +terms. + +Under the following terms: + +- **Attribution**---You must give appropriate credit (mentioning that your work + is derived from work that is Copyright (c) The Carpentries and, where + practical, linking to ), provide a [link to the + license][cc-by-human], and indicate if changes were made. You may do so in + any reasonable manner, but not in any way that suggests the licensor endorses + you or your use. + +- **No additional restrictions**---You may not apply legal terms or + technological measures that legally restrict others from doing anything the + license permits. With the understanding that: + +Notices: + +* You do not have to comply with the license for elements of the material in + the public domain or where your use is permitted by an applicable exception + or limitation. +* No warranties are given. The license may not give you all of the permissions + necessary for your intended use. For example, other rights such as publicity, + privacy, or moral rights may limit how you use the material. + +## Software + +Except where otherwise noted, the example programs and other software provided +by The Carpentries are made available under the [OSI][osi]-approved [MIT +license][mit-license]. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +## Trademark + +"The Carpentries", "Software Carpentry", "Data Carpentry", and "Library +Carpentry" and their respective logos are registered trademarks of [Community +Initiatives][ci]. + +[cc-by-human]: https://creativecommons.org/licenses/by/4.0/ +[cc-by-legal]: https://creativecommons.org/licenses/by/4.0/legalcode +[mit-license]: https://opensource.org/licenses/mit-license.html +[ci]: https://communityin.org/ +[osi]: https://opensource.org diff --git a/config.yaml b/config.yaml new file mode 100644 index 00000000..3f06e915 --- /dev/null +++ b/config.yaml @@ -0,0 +1,90 @@ +#------------------------------------------------------------ +# Values for this lesson. +#------------------------------------------------------------ + +# Which carpentry is this (swc, dc, lc, or cp)? +# swc: Software Carpentry +# dc: Data Carpentry +# lc: Library Carpentry +# cp: Carpentries (to use for instructor training for instance) +# incubator: The Carpentries Incubator +carpentry: 'dc' + +# Overall title for pages. +title: 'Data Management with SQL for Social Scientists *alpha*' + +# Date the lesson was created (YYYY-MM-DD, this is empty by default) +created: '2017-05-25' + +# Comma-separated list of keywords for the lesson +keywords: 'software, data, lesson, The Carpentries' + +# Life cycle stage of the lesson +# possible values: pre-alpha, alpha, beta, stable +life_cycle: 'alpha' + +# License of the lesson materials (recommended CC-BY 4.0) +license: 'CC-BY 4.0' + +# Link to the source repository for this lesson +source: 'https://github.com/datacarpentry/sql-socialsci' + +# Default branch of your lesson +branch: 'main' + +# Who to contact if there are any issues +contact: 'team@carpentries.org' + +# Navigation ------------------------------------------------ +# +# Use the following menu items to specify the order of +# individual pages in each dropdown section. Leave blank to +# include all pages in the folder. +# +# Example ------------- +# +# episodes: +# - introduction.md +# - first-steps.md +# +# learners: +# - setup.md +# +# instructors: +# - instructor-notes.md +# +# profiles: +# - one-learner.md +# - another-learner.md + +# Order of episodes in your lesson +episodes: +- 01-relational-database.md +- 02-db-browser.md +- 03-select.md +- 04-missing-data.md +- 05-creating-new-columns.md +- 06-aggregation.md +- 07-creating-tables-views.md +- 08-sqlite-command-line.md +- 09-joins.md +- 10-other-environments.md + +# Information for Learners +learners: + +# Information for Instructors +instructors: + +# Learner Profiles +profiles: + +# Customisation --------------------------------------------- +# +# This space below is where custom yaml items (e.g. pinning +# sandpaper and varnish versions) should live + + +url: 'https://datacarpentry.github.io/sql-socialsci' +analytics: carpentries +lang: en diff --git a/data/SAFI_farms.csv b/data/SAFI_farms.csv new file mode 100644 index 00000000..334df4f0 --- /dev/null +++ b/data/SAFI_farms.csv @@ -0,0 +1,351 @@ +Id,Country,A01_interview_date,A03_quest_no,A04_start,A05_end,A06_province,A07_district,A08_ward,A09_village,A11_years_farm,A12_agr_assoc,B_no_membrs,_members_count,B11_remittance_money,B16_years_liv,B17_parents_liv,B18_sp_parents_liv,B19_grand_liv,B20_sp_grand_liv,C01_respondent_roof_type,C02_respondent_wall_type,C03_respondent_floor_type,C04_window_type,C05_buildings_in_compound,C06_rooms,C07_other_buildings,D_no_plots,D_plots_count,E01_water_use,E_no_group_count,E_yes_group_count,E17_no_enough_water,E18_months_no_water,E19_period_use,E20_exper_other,E21_other_meth,E22_res_change,E23_memb_assoc,E24_resp_assoc,E25_fees_water,E26_affect_conflicts,F04_need_money,F05_money_source,F05_money_source_other,F08_emply_lab,F09_du_labour,F10_liv_owned,F10_liv_owned_other,F_liv_count,F12_poultry,F13_du_look_aftr_cows,F14_items_owned,G01_no_meals,G02_months_lack_food,G03_no_food_mitigation,gps:Latitude,gps:Longitude,gps:Altitude,gps:Accuracy,instanceID +1,Moz,17/11/2016,1,2017-03-23T09:49:57.000Z,2017-04-02T17:29:08.000Z,Manica,Manica,Bandula,God,11,no,3,3,no,4,no,yes,no,yes,grass,muddaub,earth,no,1,1,no,2,2,no,2.0,,,,,,,,,,,,,,,no,no,['poultry'],,1,yes,no,"['bicycle', 'television', 'solar_panel', 'table']",2,['Jan'],"['na', 'rely_less_food', 'reduce_meals', 'day_night_hungry']",-19.11225943,33.48345609,698.0,14.0,uuid:ec241f2c-0609-46ed-b5e8-fe575f6cefef +2,Moz,17/11/2016,1,2017-04-02T09:48:16.000Z,2017-04-02T17:26:19.000Z,Manica,Manica,Bandula,God,2,yes,7,7,no,9,yes,yes,yes,yes,grass,muddaub,earth,no,1,1,no,3,3,yes,,3.0,yes,"['Aug', 'Sept']",2.0,yes,no,,yes,no,no,once,no,,,yes,no,"['oxen', 'cows', 'goats']",,3,yes,no,"['cow_cart', 'bicycle', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",2,"['Jan', 'Sept', 'Oct', 'Nov', 'Dec']","['na', 'reduce_meals', 'restrict_adults', 'borrow_food', 'seek_government']",-19.11247712,33.48341568,690.0,19.0,uuid:099de9c9-3e5e-427b-8452-26250e840d6e +3,Moz,17/11/2016,3,2017-04-02T14:35:26.000Z,2017-04-02T17:26:53.000Z,Manica,Manica,Bandula,God,40,no,10,10,no,15,no,no,no,no,mabatisloping,burntbricks,cement,yes,1,1,no,1,1,no,1.0,,,,,,,,,,,,,,,no,yes,['none'],,1,yes,no,['solar_torch'],2,"['Jan', 'Feb', 'Mar', 'Oct', 'Nov', 'Dec']","['na', 'restrict_adults', 'lab_ex_food']",-19.1121076,33.48344998,674.0,13.0,uuid:193d7daf-9582-409b-bf09-027dd36f9007 +4,Moz,17/11/2016,4,2017-04-02T14:55:18.000Z,2017-04-02T17:27:16.000Z,Manica,Manica,Bandula,God,6,no,7,7,no,6,no,no,no,no,mabatisloping,burntbricks,earth,no,1,1,no,3,3,no,3.0,,,,,,,,,,,,,,,no,yes,"['oxen', 'cows']",,2,yes,no,"['bicycle', 'radio', 'cow_plough', 'solar_panel', 'mobile_phone']",2,"['Sept', 'Oct', 'Nov', 'Dec']","['na', 'reduce_meals', 'restrict_adults', 'lab_ex_food']",-19.11222901,33.48342395,679.0,5.0,uuid:148d1105-778a-4755-aa71-281eadd4a973 +5,Moz,17/11/2016,5,2017-04-02T15:10:35.000Z,2017-04-02T17:27:35.000Z,Manica,Manica,Bandula,God,18,no,7,7,no,40,yes,no,yes,no,grass,burntbricks,earth,no,1,1,no,2,2,no,2.0,,,,,,,,,,,,,,,no,no,"['oxen', 'cows', 'goats', 'poultry']",,4,yes,no,"['motorcyle', 'radio', 'cow_plough', 'mobile_phone']",2,"['Aug', 'Sept', 'Oct', 'Nov']","['na', 'go_forest', 'migrate']",-19.11221722,33.48342524,689.0,10.0,uuid:2c867811-9696-4966-9866-f35c3e97d02d +6,Moz,17/11/2016,6,2017-04-02T15:27:25.000Z,2017-04-02T17:28:02.000Z,Manica,Manica,Bandula,God,3,no,3,3,no,3,no,no,no,no,grass,muddaub,earth,no,1,1,no,1,1,no,1.0,,,,,,,,,,,,,,,no,yes,['none'],,1,no,no,,2,"['Aug', 'Sept', 'Oct']","['borrow_food', 'lab_ex_food', 'seek_government']",-19.1121959,33.48339187,692.0,12.0,uuid:daa56c91-c8e3-44c3-a663-af6a49a2ca70 +7,Moz,17/11/2016,7,2017-04-02T15:38:01.000Z,2017-04-02T17:28:19.000Z,Manica,Manica,Bandula,God,20,no,6,6,no,38,yes,no,yes,no,grass,muddaub,earth,no,1,1,yes,4,4,yes,,4.0,yes,"['Aug', 'Sept', 'Oct']",10.0,yes,no,,no,,no,never,no,,,no,no,['oxen'],,1,no,no,"['motorcyle', 'cow_plough']",3,['Nov'],['lab_ex_food'],-19.11221904,33.48336498,709.0,11.0,uuid:ae20a58d-56f4-43d7-bafa-e7963d850844 +8,Moz,16/11/2016,8,2017-04-02T15:59:52.000Z,2017-04-02T17:28:39.000Z,Manica,Manica,Manica,Chirodzo,16,yes,12,12,no,70,yes,yes,yes,yes,mabatisloping,burntbricks,cement,no,2,3,yes,2,2,yes,,2.0,yes,"['Sept', 'Oct']",10.0,yes,no,,yes,yes,no,never,no,,,yes,no,"['oxen', 'goats']",,2,yes,no,"['motorcyle', 'bicycle', 'television', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'table', 'fridge']",2,['Jan'],"['rely_less_food', 'limit_variety', 'reduce_meals', 'restrict_adults', 'borrow_food']",-19.11215963,33.48341914,700.0,9.0,uuid:d6cee930-7be1-4fd9-88c0-82a08f90fb5a +9,Moz,16/11/2016,9,2017-04-02T16:23:36.000Z,2017-04-02T16:42:08.000Z,Manica,Manica,Bandula,Chirodzo,16,no,8,8,no,6,yes,no,yes,no,grass,burntbricks,earth,no,2,1,yes,3,3,yes,,3.0,yes,"['Oct', 'Nov']",6.0,yes,no,,no,,no,never,no,,,yes,yes,"['oxen', 'cows', 'goats']",,3,yes,no,"['television', 'solar_panel', 'solar_torch']",3,"['Jan', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'restrict_adults', 'lab_ex_food']",-19.11221518,33.48343695,701.0,11.0,uuid:846103d2-b1db-4055-b502-9cd510bb7b37 +10,Moz,16/12/2016,10,2017-04-02T17:03:28.000Z,2017-04-02T17:25:11.000Z,Manica,Manica,Bandula,Chirodzo,22,no,12,12,no,23,no,no,no,no,mabatisloping,burntbricks,cement,yes,1,5,no,2,2,yes,,2.0,yes,"['Sept', 'Oct', 'Nov']",22.0,yes,no,,no,,no,never,no,,,yes,no,"['oxen', 'cows']",,2,yes,no,"['cow_cart', 'motorcyle', 'bicycle', 'television', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'table']",3,"['Jan', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'limit_portion', 'restrict_adults', 'lab_ex_food']",-19.1122147,33.48339436,710.0,14.0,uuid:8f4e49bc-da81-4356-ae34-e0d794a23721 +11,Moz,21/11/2016,11,2017-04-03T03:16:15.000Z,2017-04-03T03:31:10.000Z,Manica,Manica,Bandula,God,6,no,6,6,no,20,yes,yes,no,yes,grass,sunbricks,earth,no,2,1,no,2,2,no,2.0,,,,,,,,,,,,,,,no,yes,"['oxen', 'cows']",,2,no,no,"['radio', 'cow_plough']",2,"['Oct', 'Nov']","['rely_less_food', 'lab_ex_food']",-19.11219126,33.48345933,707.0,10.0,uuid:d29b44e3-3348-4afc-aa4d-9eb34c89d483 +12,Moz,21/11/2016,12,2017-04-03T03:31:13.000Z,2017-04-03T03:58:34.000Z,Manica,Manica,Bandula,God,20,no,7,7,yes,20,no,no,no,no,mabatisloping,burntbricks,cement,no,2,3,no,2,2,yes,,2.0,yes,"['Aug', 'Sept', 'Oct', 'Nov']",20.0,yes,no,,yes,no,no,never,no,,,no,no,"['oxen', 'cows']",,2,yes,no,"['cow_cart', 'bicycle', 'radio', 'cow_plough', 'table']",3,"['Sept', 'Oct']","['rely_less_food', 'limit_variety', 'reduce_meals', 'lab_ex_food']",-19.11229465,33.48341504,696.0,13.0,uuid:e6ee6269-b467-4e37-91fc-5e9eaf934557 +13,Moz,21/11/2016,13,2017-04-03T03:58:43.000Z,2017-04-03T04:19:36.000Z,Manica,Manica,Bandula,God,7,yes,6,6,no,8,yes,no,yes,no,grass,burntbricks,earth,no,1,1,no,4,4,yes,,4.0,yes,['Oct'],7.0,yes,no,,no,,no,never,no,,,yes,no,"['cows', 'goats', 'poultry']",,3,yes,no,"['bicycle', 'radio', 'cow_plough', 'mobile_phone']",2,"['Sept', 'Oct', 'Nov']",['lab_ex_food'],-19.11236935,33.48355635,706.0,15.0,uuid:6c00c145-ee3b-409c-8c02-2c8d743b6918 +14,Moz,21/11/2016,14,2017-04-03T04:19:57.000Z,2017-04-03T04:50:05.000Z,Manica,Manica,Bandula,God,20,yes,10,10,no,20,yes,yes,no,yes,grass,burntbricks,earth,no,3,3,no,3,3,no,3.0,,,,,,,,,,,,,,,yes,yes,"['oxen', 'cows', 'goats']",,3,yes,no,"['bicycle', 'radio', 'cow_plough', 'solar_panel', 'table', 'mobile_phone']",3,"['June', 'July', 'Aug', 'Sept', 'Oct', 'Nov']","['reduce_meals', 'lab_ex_food']",-19.11222089,33.4834388,698.0,11.0,uuid:9b21467f-1116-4340-a3b1-1ab64f13c87d +15,Moz,21/11/2016,15,2017-04-03T05:12:17.000Z,2017-04-03T05:28:44.000Z,Manica,Manica,Bandula,God,30,yes,5,5,no,30,yes,yes,yes,yes,grass,sunbricks,earth,no,1,2,yes,3,3,yes,,3.0,yes,"['Sept', 'Oct', 'Nov']",30.0,yes,no,,yes,no,no,once,no,,,no,no,"['oxen', 'cows', 'goats']",,3,yes,no,"['bicycle', 'radio', 'cow_plough', 'solar_panel', 'table']",2,"['Jan', 'Feb', 'Mar', 'Apr', 'May', 'June', 'July', 'Aug', 'Sept', 'Oct', 'Nov']","['na', 'rely_less_food', 'limit_portion', 'reduce_meals', 'lab_ex_food']",-19.1120793,33.48339657,715.0,9.0,uuid:a837e545-ff86-4a1c-a1a5-6186804b985f +16,Moz,24/11/2016,16,2017-04-03T05:29:24.000Z,2017-04-03T05:40:53.000Z,Manica,Manica,Bandula,God,24,yes,6,6,no,47,yes,yes,yes,yes,grass,muddaub,earth,yes,2,1,yes,1,1,no,1.0,,,,,,,,,,,,,,,yes,yes,"['oxen', 'cows', 'goats', 'poultry']",,4,no,no,"['radio', 'cow_plough', 'solar_panel', 'solar_torch']",3,"['Jan', 'Feb']",['lab_ex_food'],-19.11210678,33.48344397,709.0,9.0,uuid:d17db52f-4b87-4768-b534-ea8f9704c565 +17,Moz,21/11/2016,17,2017-04-03T05:41:42.000Z,2017-04-03T05:57:57.000Z,Manica,Manica,Bandula,God,10,yes,8,8,no,20,no,no,no,no,grass,sunbricks,earth,no,2,1,no,3,3,no,3.0,,,,,,,,,,,,,,,no,yes,['goats'],,1,no,yes,['mobile_phone'],2,"['Nov', 'Dec']",['lab_ex_food'],-19.11218314,33.48346325,710.0,10.0,uuid:4707f3dc-df18-4348-9c2c-eec651e89b6b +18,Moz,21/11/2016,18,2017-04-03T12:27:04.000Z,2017-04-03T12:39:48.000Z,Manica,Manica,Bandula,God,6,no,4,4,no,20,yes,yes,no,yes,grass,muddaub,earth,no,1,1,no,2,2,no,2.0,,,,,,,,,,,,,,,no,yes,"['goats', 'pigs', 'poultry']",,3,yes,no,"['bicycle', 'mobile_phone']",2,"['Oct', 'Nov']","['reduce_meals', 'lab_ex_food']",-19.11133515,33.47630848,685.0,17.0,uuid:7ffe7bd1-a15c-420c-a137-e1f006c317a3 +19,Moz,21/11/2016,19,2017-04-03T12:40:14.000Z,2017-04-03T12:53:29.000Z,Manica,Manica,Bandula,God,20,yes,9,9,no,23,yes,yes,yes,yes,mabatisloping,burntbricks,earth,no,1,2,yes,2,2,no,2.0,,,,,,,,,,,,,,,yes,yes,"['oxen', 'goats']",,2,yes,no,"['bicycle', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'mobile_phone']",3,"['Oct', 'Nov', 'Dec']","['rely_less_food', 'limit_portion', 'lab_ex_food', 'seek_government']",-19.11142642,33.47640837,716.0,30.0,uuid:e32f2dc0-0d05-42fb-8e21-605757ddf07d +20,Moz,21/11/2016,20,2017-04-03T14:04:50.000Z,2017-04-03T14:20:04.000Z,Manica,Manica,Bandula,God,24,yes,6,6,no,1,yes,yes,yes,yes,grass,burntbricks,earth,yes,1,1,no,2,2,no,2.0,,,,,,,,,,,,,,,no,yes,['cows'],,1,yes,yes,"['bicycle', 'cow_plough', 'solar_torch']",2,"['Oct', 'Nov']","['rely_less_food', 'lab_ex_food']",-19.11147317,33.47619213,700.0,27.0,uuid:d1005274-bf52-4e79-8380-3350dd7c2bac +21,Moz,21/11/2016,21,2017-04-03T14:24:58.000Z,2017-04-03T14:44:39.000Z,Manica,Manica,Bandula,God,20,yes,8,8,no,20,no,yes,no,yes,mabatisloping,burntbricks,cement,no,1,1,no,4,4,yes,,4.0,yes,['Oct'],20.0,yes,no,,no,,no,never,no,,,no,yes,"['oxen', 'cows', 'goats']",,3,yes,no,,2,"['Jan', 'Feb', 'Mar', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'restrict_adults', 'day_night_hungry', 'lab_ex_food']",-19.11155014,33.47623134,707.0,20.0,uuid:6570a7d0-6a0b-452c-aa2e-922500e35749 +22,Moz,21/11/2016,22,2017-04-03T16:28:52.000Z,2017-04-03T16:40:47.000Z,Manica,Manica,Bandula,God,14,no,4,4,no,20,yes,yes,yes,yes,grass,muddaub,earth,no,1,1,no,1,1,no,1.0,,,,,,,,,,,,,,,no,yes,['goats'],,1,yes,no,['radio'],2,"['Jan', 'Feb', 'Mar', 'Apr', 'Aug', 'Sept', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'reduce_meals', 'go_forest', 'lab_ex_food']",-19.11212691,33.48350764,722.0,9.0,uuid:a51c3006-8847-46ff-9d4e-d29919b8ecf9 +23,Moz,21/11/2016,23,2017-04-03T16:41:04.000Z,2017-04-03T17:04:28.000Z,Manica,Manica,Bandula,Ruaca,12,yes,10,10,no,20,no,no,no,no,mabatisloping,burntbricks,cement,yes,1,4,yes,2,2,no,2.0,,,,,,,,,,,,,,,yes,no,"['oxen', 'cows', 'goats']",,3,yes,no,"['cow_cart', 'bicycle', 'television', 'radio', 'cow_plough', 'solar_panel', 'electricity', 'mobile_phone']",3,['none'],['na'],-19.11219352,33.4833833,699.0,10.0,uuid:58b37b6d-d6cd-4414-8790-b9c68bca98de +24,Moz,21/11/2016,24,2017-04-03T17:19:49.000Z,2017-04-03T17:43:01.000Z,Manica,Manica,Bandula,Ruaca,8,no,6,6,no,4,no,no,no,no,mabatisloping,burntbricks,cement,yes,2,2,yes,3,3,yes,,3.0,yes,"['Sept', 'Oct']",8.0,yes,no,,no,,no,never,no,,,yes,no,"['oxen', 'cows', 'goats']",,3,no,no,"['radio', 'table', 'sofa_set', 'mobile_phone']",2,"['Nov', 'Dec']",['lab_ex_food'],-19.11218803,33.48343475,745.0,11.0,uuid:661457d3-7e61-45e8-a238-7415e7548f82 +25,Moz,21/11/2016,25,2017-04-04T04:01:58.000Z,2017-04-04T04:29:47.000Z,Manica,Manica,Bandula,Ruaca,10,yes,11,11,no,6,no,no,no,no,mabatisloping,burntbricks,cement,no,2,3,yes,3,3,yes,,3.0,yes,"['Aug', 'Sept']",10.0,yes,no,,no,,no,never,yes,"['business', 'non_farm_prod']",,yes,no,"['oxen', 'cows']",,2,yes,no,"['cow_cart', 'motorcyle', 'television', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'table', 'sofa_set', 'mobile_phone']",2,"['Jan', 'Feb', 'Oct']",['na'],-19.11223416,33.4834841,698.0,11.0,uuid:45ed84c4-114e-4df0-9f5d-c800806c2bee +26,Moz,21/11/2016,26,2017-04-04T04:30:19.000Z,2017-04-04T04:44:19.000Z,Manica,Manica,Bandula,Ruaca,2,yes,3,3,no,20,yes,yes,yes,yes,mabatisloping,burntbricks,earth,no,2,2,no,2,2,yes,,2.0,yes,"['Oct', 'Nov']",2.0,yes,no,,no,,no,never,no,,,yes,yes,"['oxen', 'cows']",,2,yes,no,"['radio', 'cow_plough', 'table', 'mobile_phone']",2,['none'],['na'],-19.11230411,33.48354341,706.0,12.0,uuid:1c54ee24-22c4-4ee9-b1ad-42d483c08e2e +27,Moz,21/11/2016,27,2017-04-05T04:59:42.000Z,2017-04-05T05:14:45.000Z,Manica,Manica,Bandula,Ruaca,36,no,7,7,no,36,no,no,no,no,grass,burntbricks,earth,no,3,2,yes,2,2,no,2.0,,,,,,,,,,,,,,,no,no,"['oxen', 'cows', 'poultry']",,3,yes,no,"['bicycle', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'mobile_phone']",3,['none'],['na'],-19.0430007,33.40508367,679.0,14.0,uuid:3197cded-1fdc-4c0c-9b10-cfcc0bf49c4d +28,Moz,21/11/2016,28,2017-04-05T05:14:49.000Z,2017-04-05T05:36:18.000Z,Manica,Manica,Bandula,Ruaca,2,no,2,2,no,2,no,no,no,no,grass,muddaub,earth,no,1,1,yes,3,3,yes,,3.0,yes,"['Aug', 'Sept', 'Oct', 'Nov']",2.0,yes,no,,no,,no,more_once,no,,,no,yes,['none'],,1,yes,no,,3,"['Aug', 'Sept', 'Oct']","['rely_less_food', 'reduce_meals', 'borrow_food', 'go_forest', 'lab_ex_food']",-19.04290893,33.40506932,721.0,7.0,uuid:1de53318-a8cf-4736-99b1-8239f8822473 +29,Moz,21/11/2016,29,2017-04-05T05:37:30.000Z,2017-04-05T06:05:44.000Z,Manica,Manica,Bandula,Ruaca,10,yes,7,7,no,10,yes,no,yes,no,mabatisloping,burntbricks,earth,no,1,2,yes,3,3,yes,,3.0,yes,"['Sept', 'Oct', 'Nov']",4.0,yes,yes,['less_work'],yes,yes,no,frequently,no,,,no,no,['goats'],,1,yes,no,"['motorcyle', 'bicycle', 'radio', 'table', 'mobile_phone']",3,"['Jan', 'Feb']","['rely_less_food', 'limit_variety']",-19.04302413,33.40507276,657.0,6.0,uuid:adcd7463-8943-4c67-b25f-f72311409476 +30,Moz,21/11/2016,30,2017-04-05T06:05:58.000Z,2017-04-05T06:20:39.000Z,Manica,Manica,Bandula,Ruaca,22,yes,7,7,yes,22,no,no,no,no,grass,muddaub,earth,no,1,2,no,1,1,no,1.0,,,,,,,,,,,,,,,no,yes,['none'],,1,no,no,"['bicycle', 'radio', 'mobile_phone']",2,"['Jan', 'Feb']","['rely_less_food', 'limit_variety', 'limit_portion', 'restrict_adults', 'lab_ex_food']",-19.04300478,33.40505449,669.0,5.0,uuid:59341ead-92be-45a9-8545-6edf9f94fdc6 +31,Moz,21/11/2016,31,2017-04-05T06:21:20.000Z,2017-04-05T06:38:26.000Z,Manica,Manica,Bandula,Ruaca,15,yes,3,3,no,2,yes,yes,yes,yes,grass,muddaub,earth,no,7,1,no,1,1,no,1.0,,,,,,,,,,,,,,,no,no,['none'],,1,no,no,,3,['none'],['na'],-19.04302176,33.40509382,704.0,4.0,uuid:cb06eb49-dd39-4150-8bbe-a599e074afe8 +32,Moz,21/11/2016,32,2017-04-05T06:38:55.000Z,2017-04-05T08:05:32.000Z,Manica,Manica,Bandula,Ruaca,53,yes,19,19,yes,69,yes,yes,yes,no,mabatipitched,muddaub,earth,no,8,2,yes,8,8,yes,,8.0,yes,"['Sept', 'Oct']",45.0,yes,no,,yes,no,no,more_once,yes,['farming'],,yes,yes,"['oxen', 'cows', 'goats', 'pigs', 'poultry']",,5,yes,no,"['cow_cart', 'motorcyle', 'radio', 'cow_plough', 'solar_panel', 'mobile_phone']",2,['none'],['na'],-19.04411399,33.40390565,703.0,8.0,uuid:25597af3-cd79-449c-a48a-fb9aea6c48bf +33,Moz,21/11/2016,33,2017-04-05T08:08:19.000Z,2017-04-05T08:25:48.000Z,Manica,Manica,Bandula,Ruaca,20,yes,8,8,no,34,yes,yes,yes,yes,grass,muddaub,cement,no,2,1,no,2,2,yes,,2.0,yes,"['Aug', 'Sept', 'Oct']",20.0,yes,no,,no,,no,more_once,no,,,no,no,"['oxen', 'poultry']",,2,yes,no,"['cow_cart', 'lorry', 'motorcyle', 'sterio', 'cow_plough', 'solar_panel', 'mobile_phone']",2,['none'],['na'],-19.04414887,33.40383602,695.0,5.0,uuid:0fbd2df1-2640-4550-9fbd-7317feaa4758 +34,Moz,17/11/2016,34,2017-04-05T16:00:47.000Z,2017-04-05T16:21:59.000Z,Manica,Manica,Bandula,Chirodzo,18,yes,8,8,no,18,no,no,no,no,mabatisloping,burntbricks,cement,yes,2,3,yes,2,2,yes,,2.0,yes,"['Oct', 'Nov']",2.0,yes,no,,yes,no,no,more_once,no,,,no,no,"['oxen', 'cows', 'goats']",,3,yes,no,"['television', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",2,"['Jan', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'restrict_adults', 'lab_ex_food']",-19.11219065,33.48341559,706.0,11.0,uuid:14c78c45-a7cc-4b2a-b765-17c82b43feb4 +35,Moz,17/11/2016,35,2017-04-05T16:22:13.000Z,2017-04-05T16:50:25.000Z,Manica,Manica,Bandula,Chirodzo,45,yes,5,5,no,45,no,no,no,no,grass,muddaub,earth,no,3,1,no,2,2,yes,,2.0,yes,"['Sept', 'Oct', 'Nov']",20.0,yes,no,,yes,no,no,more_once,no,,,no,yes,"['oxen', 'cows']",,2,yes,no,"['bicycle', 'cow_plough']",3,"['Jan', 'Sept', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'restrict_adults', 'go_forest']",-19.11211362,33.48342515,733.0,11.0,uuid:ff7496e7-984a-47d3-a8a1-13618b5683ce +36,Moz,17/11/2016,36,2017-04-05T16:50:48.000Z,2017-04-05T17:10:53.000Z,Manica,Manica,Bandula,Chirodzo,23,yes,6,6,no,23,no,no,no,no,mabatisloping,sunbricks,earth,no,1,1,no,3,3,yes,,3.0,no,,23.0,yes,no,,yes,no,no,once,no,,,yes,yes,"['oxen', 'cows', 'pigs']",,3,no,no,"['cow_cart', 'bicycle', 'radio', 'cow_plough', 'solar_panel', 'mobile_phone']",3,['none'],['na'],-19.11218058,33.4833843,710.0,10.0,uuid:c90eade0-1148-4a12-8c0e-6387a36f45b1 +37,Moz,17/11/2016,37,2017-04-05T17:17:48.000Z,2017-04-05T17:26:51.000Z,Manica,Manica,Bandula,Chirodzo,8,no,3,3,no,8,yes,yes,no,no,mabatisloping,burntbricks,earth,no,3,1,no,1,1,no,1.0,,,,,,,,,,,,,,,no,no,"['oxen', 'cows']",,2,yes,no,"['bicycle', 'television', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'mobile_phone']",3,"['Jan', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'lab_ex_food']",-19.11217951,33.48339525,711.0,12.0,uuid:408c6c93-d723-45ef-8dee-1b1bd3fe20cd +38,Moz,17/11/2016,38,2017-04-05T17:28:12.000Z,2017-04-05T17:50:57.000Z,Manica,Manica,Bandula,God,19,yes,10,10,yes,19,no,no,no,no,grass,muddaub,earth,no,3,1,no,2,2,yes,,2.0,yes,"['Sept', 'Oct']",9.0,yes,no,,yes,no,no,never,no,,,no,yes,"['oxen', 'cows', 'goats']",,3,yes,yes,"['bicycle', 'radio', 'cow_plough', 'solar_panel', 'table', 'mobile_phone']",3,['Nov'],"['limit_variety', 'lab_ex_food']",-19.11222939,33.48337467,696.0,9.0,uuid:81309594-ff58-4dc1-83a7-72af5952ee08 +39,Moz,17/11/2016,39,2017-04-06T08:31:17.000Z,2017-04-06T08:44:47.000Z,Manica,Manica,Bandula,God,22,yes,6,6,no,22,yes,yes,yes,yes,mabatisloping,muddaub,earth,no,1,1,no,1,1,no,1.0,,,,,,,,,,,,,,,no,no,['oxen'],,1,yes,no,,3,['Nov'],['lab_ex_food'],-19.0433618,33.4046671,0.0,20.0,uuid:c0fb6310-55af-4831-ae3d-2729556c3285 +40,Moz,17/11/2016,40,2017-04-06T08:44:51.000Z,2017-04-06T09:03:47.000Z,Manica,Manica,Bandula,God,23,yes,9,9,yes,23,no,yes,yes,yes,grass,burntbricks,earth,no,1,1,no,2,2,yes,,2.0,yes,"['Sept', 'Oct']",23.0,yes,no,,yes,no,no,never,no,,,no,no,['oxen'],,1,yes,no,"['bicycle', 'radio', 'cow_plough', 'solar_panel', 'table', 'mobile_phone']",3,"['Sept', 'Oct', 'Nov']",['lab_ex_food'],-19.0433618,33.4046671,0.0,22.112,uuid:c0b34854-eede-4e81-b183-ef58a45bfc34 +41,Moz,17/11/2016,41,2017-04-06T09:03:50.000Z,2017-04-06T09:14:05.000Z,Manica,Manica,Bandula,God,22,yes,7,7,no,22,yes,yes,yes,yes,grass,muddaub,earth,no,1,1,no,1,1,no,1.0,,,,,,,,,,,,,,,no,no,"['oxen', 'poultry']",,2,no,no,"['motorcyle', 'bicycle', 'radio', 'cow_plough', 'table']",3,"['Oct', 'Nov']","['limit_portion', 'reduce_meals']",-19.04339398,33.40485363,679.0,13.0,uuid:b3ba34d8-eea1-453d-bc73-c141bcbbc5e5 +42,Moz,17/11/2016,42,2017-04-06T09:14:22.000Z,2017-04-06T09:30:54.000Z,Manica,Manica,Bandula,God,8,yes,8,8,no,8,no,no,no,no,grass,sunbricks,earth,yes,1,1,no,2,2,yes,,2.0,yes,"['Aug', 'Sept']",5.0,yes,no,,no,,no,never,no,,,no,no,"['cows', 'goats', 'poultry']",,3,yes,no,['mobile_phone'],3,"['Jan', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals']",-19.04346041,33.40484617,699.0,10.0,uuid:e3a1dd8a-1bda-428c-a014-2b527f11ae64 +43,Moz,17/11/2016,43,2017-04-06T09:31:56.000Z,2017-04-06T09:53:53.000Z,Manica,Manica,Bandula,Chirodzo,3,no,7,7,no,29,no,no,no,no,grass,muddaub,earth,no,2,1,no,4,4,yes,,4.0,no,,3.0,yes,no,,no,,no,never,no,,,yes,no,"['oxen', 'cows']",,2,no,no,"['cow_plough', 'mobile_phone']",2,"['Jan', 'Feb', 'Oct', 'Nov', 'Dec']",['lab_ex_food'],-19.04303063,33.40472726,605.0,30.0,uuid:b4dff49f-ef27-40e5-a9d1-acf287b47358 +44,Moz,17/11/2016,44,2017-04-06T14:44:32.000Z,2017-04-06T14:53:01.000Z,Manica,Manica,Bandula,Chirodzo,3,no,2,2,no,6,no,no,no,no,grass,muddaub,earth,no,2,1,no,1,1,no,1.0,,,,,,,,,,,,,,,yes,no,"['oxen', 'cows', 'poultry']",,3,yes,no,"['radio', 'solar_torch']",2,"['Jan', 'Dec']",['borrow_food'],-19.04315107,33.40458039,716.0,11.0,uuid:f9fadf44-d040-4fca-86c1-2835f79c4952 +45,Moz,17/11/2016,45,2017-04-06T14:53:04.000Z,2017-04-06T15:11:57.000Z,Manica,Manica,Bandula,Chirodzo,25,yes,9,9,no,7,no,no,no,no,grass,muddaub,earth,no,2,1,no,3,3,yes,,3.0,yes,"['Sept', 'Oct']",20.0,yes,no,,no,,no,never,yes,"['farming', 'non_farm_prod']",,yes,no,"['oxen', 'cows', 'goats', 'poultry']",,4,no,no,"['motorcyle', 'bicycle', 'television', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",3,['none'],['na'],-19.04312371,33.40466493,703.0,28.0,uuid:e3554d22-35b1-4fb9-b386-dd5866ad5792 +46,Moz,17/11/2016,46,2017-04-06T15:19:41.000Z,2017-04-06T15:45:32.000Z,Manica,Manica,Bandula,Chirodzo,21,yes,10,10,no,42,yes,yes,yes,yes,mabatisloping,burntbricks,cement,no,3,2,no,5,5,yes,,5.0,yes,"['Aug', 'Sept', 'Oct']",21.0,yes,no,,no,,no,once,no,,,yes,no,"['oxen', 'poultry']",,2,no,no,"['motorcyle', 'computer', 'television', 'sterio', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",2,"['Sept', 'Oct', 'Nov']",['lab_ex_food'],-19.04307032,33.40458421,703.0,5.0,uuid:35f297e0-aa5d-4149-9b7b-4965004cfc37 +47,Moz,17/11/2016,47,2017-04-07T14:05:25.000Z,2017-04-07T14:19:45.000Z,Manica,Manica,Bandula,Chirodzo,2,yes,2,2,no,2,yes,yes,yes,yes,grass,muddaub,earth,no,1,1,yes,2,2,yes,,2.0,yes,"['Sept', 'Oct', 'Nov']",2.0,yes,no,,yes,no,no,once,no,,,no,no,['none'],,1,no,no,"['solar_torch', 'mobile_phone']",3,['none'],['na'],-19.11226093,33.48339791,689.0,5.0,uuid:2d0b1936-4f82-4ec3-a3b5-7c3c8cd6cc2b +48,Moz,16/11/2016,48,2017-04-07T14:19:49.000Z,2017-04-07T14:40:23.000Z,Manica,Manica,Bandula,Chirodzo,48,yes,7,7,no,58,yes,no,yes,no,grass,muddaub,earth,no,1,1,no,1,1,no,1.0,,,,,,,,,,,,,,,no,no,"['oxen', 'cows', 'poultry']",,3,yes,no,['radio'],3,"['June', 'July', 'Aug', 'Sept', 'Oct', 'Nov']",['limit_variety'],-19.11222978,33.48353345,689.0,12.0,uuid:e180899c-7614-49eb-a97c-40ed013a38a2 +49,Moz,16/11/2016,49,2017-04-07T14:43:09.000Z,2017-04-07T14:55:51.000Z,Manica,Manica,Bandula,49,12,no,6,6,no,26,yes,yes,yes,yes,mabatisloping,burntbricks,earth,yes,2,2,no,1,1,no,1.0,,,,,,,,,,,,,,,no,yes,"['goats', 'poultry']",,2,yes,no,"['bicycle', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",3,"['Jan', 'Nov', 'Dec']","['reduce_meals', 'go_forest', 'lab_ex_food']",-19.11228265,33.48334844,694.0,12.0,uuid:2303ebc1-2b3c-475a-8916-b322ebf18440 +50,Moz,16/11/2016,50,2017-04-07T14:56:01.000Z,2017-04-07T15:26:23.000Z,Manica,Manica,Bandula,Chirodzo,6,yes,6,6,no,7,no,no,no,no,grass,muddaub,earth,no,1,1,no,1,1,yes,,1.0,yes,"['Sept', 'Oct']",1.0,no,no,,yes,no,no,never,no,,,yes,no,['poultry'],,1,yes,no,['solar_torch'],2,"['June', 'July', 'Aug', 'Sept', 'Oct', 'Nov', 'Dec']","['borrow_food', 'go_forest', 'lab_ex_food']",-19.11220496,33.48344521,718.0,12.0,uuid:4267c33c-53a7-46d9-8bd6-b96f58a4f92c +51,Moz,16/11/2016,51,2017-04-07T15:27:45.000Z,2017-04-07T15:39:10.000Z,Manica,Manica,Bandula,Chirodzo,11,yes,5,5,no,30,yes,no,yes,no,grass,muddaub,cement,no,1,1,no,1,1,no,1.0,,,,,,,,,,,,,,,no,yes,['poultry'],,1,no,no,['radio'],3,"['Oct', 'Nov']","['go_forest', 'lab_ex_food']",-19.11221446,33.48338443,709.0,12.0,uuid:18ac8e77-bdaf-47ab-85a2-e4c947c9d3ce +52,Moz,16/11/2016,52,2017-04-08T04:44:09.000Z,2017-04-08T05:02:58.000Z,Manica,Manica,Bandula,Chirodzo,15,yes,11,11,no,15,no,no,no,no,mabatisloping,burntbricks,cement,yes,1,3,yes,1,1,yes,,1.0,yes,"['Sept', 'Oct', 'Nov']",15.0,no,no,,no,,no,never,no,,,no,no,"['oxen', 'cows', 'poultry']",,3,yes,no,"['motorcyle', 'television', 'radio', 'cow_plough', 'solar_panel', 'mobile_phone']",3,"['Aug', 'Sept', 'Oct', 'Nov']","['limit_variety', 'reduce_meals']",-19.11223637,33.48335287,694.0,10.0,uuid:6db55cb4-a853-4000-9555-757b7fae2bcf +53,Moz,16/11/2016,21,2017-04-08T05:03:08.000Z,2017-04-08T05:33:51.000Z,Manica,Manica,Bandula,Chirodzo,16,yes,8,8,yes,16,yes,yes,yes,yes,mabatisloping,burntbricks,cement,no,2,3,no,3,3,yes,,3.0,yes,"['Aug', 'Sept', 'Oct']",16.0,yes,no,,yes,no,no,frequently,no,,,no,no,"['oxen', 'goats']",,2,yes,no,"['bicycle', 'radio', 'mobile_phone']",2,['Nov'],"['rely_less_food', 'limit_portion']",-19.11216571,33.48343865,687.0,10.0,uuid:cc7f75c5-d13e-43f3-97e5-4f4c03cb4b12 +54,Moz,16/11/2016,54,2017-04-08T05:36:55.000Z,2017-04-08T05:52:15.000Z,Manica,Manica,Bandula,Chirodzo,10,no,7,7,yes,15,yes,no,yes,no,grass,muddaub,earth,no,3,1,no,1,1,yes,,1.0,yes,"['Aug', 'Sept', 'Oct', 'Nov', 'Dec']",10.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,yes,no,,2,"['Sept', 'Oct', 'Nov']","['rely_less_food', 'lab_ex_food']",-19.11220247,33.48335527,681.0,9.0,uuid:273ab27f-9be3-4f3b-83c9-d3e1592de919 +55,Moz,16/11/2016,55,2017-04-08T05:52:32.000Z,2017-04-08T06:05:41.000Z,Manica,Manica,Bandula,Chirodzo,23,yes,9,9,no,23,yes,no,yes,no,grass,muddaub,earth,no,2,2,no,1,1,no,1.0,,,,,,,,,,,,,,,no,no,['goats'],,1,yes,no,"['television', 'cow_plough', 'mobile_phone']",2,"['Oct', 'Nov']",['lab_ex_food'],-19.11228974,33.48333393,702.0,11.0,uuid:883c0433-9891-4121-bc63-744f082c1fa0 +56,Moz,16/11/2016,56,2017-04-08T06:05:59.000Z,2017-04-08T06:26:12.000Z,Manica,Manica,Bandula,Chirodzo,23,yes,12,12,no,23,yes,yes,yes,yes,mabatisloping,burntbricks,cement,no,4,2,no,2,2,yes,,2.0,yes,"['Sept', 'Oct']",23.0,yes,no,,yes,no,no,never,no,,,no,no,"['oxen', 'goats']",,2,yes,no,"['motorcyle', 'bicycle', 'mobile_phone']",3,['none'],['na'],-19.11217264,33.48341837,689.0,10.0,uuid:973c4ac6-f887-48e7-aeaf-4476f2cfab76 +57,Moz,16/11/2016,57,2017-04-08T06:26:22.000Z,2017-04-08T06:39:40.000Z,Manica,Manica,Bandula,Chirodzo,20,yes,4,4,no,27,yes,yes,yes,yes,grass,burntbricks,earth,no,4,1,no,2,2,yes,,2.0,no,,20.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,no,no,['radio'],2,['none'],['na'],-19.11227947,33.48338576,695.0,10.0,uuid:a7184e55-0615-492d-9835-8f44f3b03a71 +58,Moz,16/11/2016,58,2017-04-08T08:25:49.000Z,2017-04-08T08:48:51.000Z,Manica,Manica,Bandula,Chirodzo,35,yes,11,11,no,45,yes,yes,yes,yes,mabatisloping,burntbricks,earth,no,5,3,no,3,3,yes,,3.0,no,,35.0,yes,no,,no,,no,never,no,,,no,no,"['oxen', 'cows', 'goats']",,3,no,no,"['motorcyle', 'bicycle', 'television', 'radio', 'cow_plough', 'solar_panel', 'mobile_phone']",2,['none'],['na'],-19.1121758,33.48332076,723.0,11.0,uuid:a7a3451f-cd0d-4027-82d9-8dcd1234fcca +59,Moz,16/11/2016,59,2017-04-08T08:52:05.000Z,2017-04-08T09:02:34.000Z,Manica,Manica,Bandula,Chirodzo,60,no,2,2,no,60,yes,yes,yes,yes,grass,muddaub,earth,no,1,3,yes,2,2,no,2.0,,,,,,,,,,,,,,,no,no,"['oxen', 'cows', 'poultry']",,3,no,no,,2,['none'],['na'],-19.1123395,33.48333251,683.0,13.0,uuid:1936db62-5732-45dc-98ff-9b3ac7a22518 +60,Moz,16/11/2016,60,2017-04-08T09:03:01.000Z,2017-04-08T09:20:18.000Z,Manica,Bandula,Bandula,Chirodzo,12,yes,8,8,no,15,yes,yes,yes,yes,grass,burntbricks,earth,no,3,2,no,3,3,yes,,3.0,yes,"['Aug', 'Sept', 'Oct']",12.0,yes,no,,no,,no,never,no,,,yes,yes,"['oxen', 'cows', 'goats', 'poultry']",,4,yes,no,['cow_plough'],2,['none'],['na'],-19.11225763,33.48341208,694.0,11.0,uuid:85465caf-23e4-4283-bb72-a0ef30e30176 +61,Moz,16/11/2016,61,2017-04-08T10:47:11.000Z,2017-04-08T11:14:09.000Z,Manica,Manica,Bandula,Chirodzo,14,yes,10,10,no,14,no,yes,yes,yes,grass,muddaub,earth,no,4,1,no,2,2,yes,,2.0,yes,"['Aug', 'Sept', 'Oct']",13.0,yes,no,,yes,yes,no,more_once,no,,,yes,no,"['oxen', 'cows', 'goats']",,3,yes,no,"['cow_cart', 'motorcyle', 'bicycle', 'television', 'radio', 'cow_plough', 'solar_panel', 'table', 'mobile_phone']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'restrict_adults']",-19.11218035,33.48341635,712.0,13.0,uuid:2401cf50-8859-44d9-bd14-1bf9128766f2 +62,Moz,16/11/2016,62,2017-04-08T13:27:58.000Z,2017-04-08T13:41:21.000Z,Manica,Manica,Bandula,Chirodzo,5,no,5,5,no,5,yes,no,no,no,grass,muddaub,earth,no,3,1,no,2,2,no,2.0,,,,,,,,,,,,,,,no,yes,['none'],,1,no,no,"['bicycle', 'radio', 'mobile_phone']",3,"['Aug', 'Sept', 'Oct', 'Nov']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'restrict_adults', 'borrow_food', 'go_forest', 'lab_ex_food']",-19.11216869,33.48339699,719.0,18.0,uuid:c6597ecc-cc2a-4c35-a6dc-e62c71b345d6 +63,Moz,16/11/2016,63,2017-04-08T13:41:39.000Z,2017-04-08T13:52:07.000Z,Manica,Manica,Bandula,Chirodzo,1,yes,4,4,no,10,yes,yes,no,yes,grass,muddaub,earth,no,1,1,yes,1,1,no,1.0,,,,,,,,,,,,,,,no,yes,['none'],,1,no,no,,3,"['Jan', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'restrict_adults']",-19.11220024,33.4833903,702.0,25.0,uuid:86ed4328-7688-462f-aac7-d6518414526a +64,Moz,16/11/2016,64,2017-04-08T13:52:30.000Z,2017-04-08T14:02:24.000Z,Manica,Manica,Bandula,Chirodzo,1,no,6,6,no,1,no,no,no,no,grass,muddaub,earth,no,2,1,no,2,2,no,2.0,,,,,,,,,,,,,,,no,no,['goats'],,1,yes,no,"['bicycle', 'solar_torch', 'table', 'sofa_set', 'mobile_phone']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'restrict_adults', 'lab_ex_food']",-19.1121962,33.48339576,704.0,9.0,uuid:28cfd718-bf62-4d90-8100-55fafbe45d06 +65,Moz,16/11/2016,65,2017-04-08T14:02:49.000Z,2017-04-08T14:15:45.000Z,Manica,Manica,Bandula,Chirodzo,20,no,8,8,no,20,no,no,no,no,mabatisloping,burntbricks,earth,no,2,3,no,2,2,yes,,2.0,yes,"['Sept', 'Oct', 'Nov']",20.0,yes,no,,no,,no,once,no,,,no,no,"['oxen', 'cows', 'goats']",,3,yes,no,"['motorcyle', 'radio', 'cow_plough', 'table']",3,"['Jan', 'Feb', 'Mar']","['rely_less_food', 'limit_variety', 'reduce_meals', 'lab_ex_food']",-19.11221474,33.48341209,706.0,39.0,uuid:143f7478-0126-4fbc-86e0-5d324339206b +66,Moz,16/11/2016,66,2017-04-08T21:09:38.000Z,2017-04-08T21:33:45.000Z,Manica,Manica,Bandula,Chirodzo,16,yes,10,10,no,37,yes,no,no,no,mabatipitched,burntbricks,cement,yes,5,3,yes,1,1,yes,,1.0,yes,"['Aug', 'Sept', 'Oct']",10.0,no,no,,yes,no,no,frequently,no,,,yes,no,"['oxen', 'cows', 'goats', 'donkeys']",,4,yes,no,"['cow_cart', 'motorcyle', 'bicycle', 'television', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'mobile_phone']",3,['none'],['na'],-19.1121722,33.48339142,702.0,8.0,uuid:a457eab8-971b-4417-a971-2e55b8702816 +67,Moz,16/11/2016,67,2017-04-08T21:34:23.000Z,2017-04-08T21:49:02.000Z,Manica,Manica,Bandula,Chirodzo,9,yes,5,5,no,31,yes,no,yes,no,mabatipitched,burntbricks,cement,yes,1,2,no,1,1,yes,,1.0,yes,"['Oct', 'Nov']",9.0,yes,no,,no,,no,more_once,no,,,yes,yes,"['oxen', 'cows', 'goats', 'donkeys']",,4,yes,no,"['motorcyle', 'radio', 'cow_plough', 'solar_panel', 'mobile_phone']",3,['none'],['na'],-19.11209398,33.48338805,717.0,11.0,uuid:6c15d667-2860-47e3-a5e7-7f679271e419 +68,Moz,16/11/2016,68,2017-04-08T21:49:40.000Z,2017-04-09T22:06:57.000Z,Manica,Manica,Bandula,Chirodzo,21,yes,8,8,no,52,yes,yes,no,no,mabatipitched,burntbricks,earth,no,3,3,no,3,3,yes,,3.0,yes,"['Nov', 'Dec']",21.0,yes,no,,no,,no,more_once,no,,,no,no,"['oxen', 'cows', 'goats']",,3,yes,no,"['motorcyle', 'television', 'sterio', 'solar_panel', 'mobile_phone']",3,['none'],['na'],-19.11214985,33.4834782,710.0,10.0,uuid:ef04b3eb-b47d-412e-9b09-4f5e08fc66f9 +69,Moz,16/11/2016,69,2017-04-09T22:08:07.000Z,2017-04-09T22:21:08.000Z,Manica,Manica,Bandula,Chirodzo,12,yes,4,4,no,12,no,no,no,no,grass,muddaub,earth,no,2,1,no,1,1,yes,,1.0,yes,"['Nov', 'Dec']",12.0,yes,no,,no,,no,more_once,no,,,no,no,['goats'],,1,yes,no,"['bicycle', 'radio', 'solar_torch', 'mobile_phone']",3,['none'],['na'],-19.11216693,33.48340465,708.0,8.0,uuid:f86933a5-12b8-4427-b821-43c5b039401d +70,Moz,16/11/2016,70,2017-04-09T22:21:23.000Z,2017-04-09T22:40:57.000Z,Manica,Manica,Bandula,Chirodzo,20,yes,8,8,no,25,no,yes,no,no,mabatipitched,burntbricks,earth,no,2,2,yes,3,3,yes,,3.0,yes,"['Aug', 'Sept']",20.0,yes,no,,no,,no,more_once,no,,,no,yes,"['oxen', 'cows', 'goats', 'poultry']",,4,no,no,"['cow_cart', 'bicycle', 'radio', 'cow_plough', 'solar_panel', 'mobile_phone']",2,['none'],['na'],-19.11217415,33.48341471,707.0,8.0,uuid:1feb0108-4599-4bf9-8a07-1f5e66a50a0a +71,Moz,18/11/2016,71,2017-04-09T15:00:19.000Z,2017-04-09T15:19:22.000Z,Manica,Manica,Bandula,Ruaca,12,yes,6,6,no,14,yes,yes,yes,yes,grass,burntbricks,earth,no,1,1,no,2,2,yes,,2.0,yes,"['Sept', 'Oct', 'Nov']",1.0,yes,no,,yes,no,no,more_once,no,,,no,yes,"['oxen', 'goats', 'poultry']",,3,no,no,"['radio', 'cow_plough', 'mobile_phone']",2,"['Aug', 'Sept', 'Oct', 'Nov']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'restrict_adults', 'borrow_food', 'lab_ex_food']",-19.11220603,33.48332601,696.0,4.0,uuid:761f9c49-ec93-4932-ba4c-cc7b78dfcef1 +72,Moz,16/11/2016,127,2017-04-09T05:16:06.000Z,2017-04-09T05:27:41.000Z,Manica,Manica,Bandula,Chirodzo,10,yes,4,4,no,18,no,no,no,no,grass,burntbricks,earth,no,3,8,no,1,1,no,1.0,,,,,,,,,,,,,,,no,no,['pigs'],,1,no,no,['mobile_phone'],2,"['Aug', 'Sept', 'Oct']","['borrow_food', 'lab_ex_food']",-19.11221396,33.48341359,676.0,8.0,uuid:f6d04b41-b539-4e00-868a-0f62b427587d +73,Moz,23/11/2016,133,2017-04-09T05:27:46.000Z,2017-04-09T05:43:51.000Z,Manica,Manica,Bandula,Ruaca,2,no,5,5,yes,25,no,no,no,no,mabatisloping,burntbricks,earth,no,1,2,yes,1,1,yes,,1.0,yes,['Nov'],2.0,yes,no,,no,,no,never,no,,,no,yes,"['oxen', 'cows', 'goats', 'sheep', 'poultry']",,5,yes,no,"['cow_cart', 'car', 'lorry', 'motorcyle', 'bicycle', 'television', 'sterio', 'cow_plough', 'solar_panel', 'solar_torch', 'electricity', 'table', 'sofa_set', 'mobile_phone', 'fridge']",3,"['Jan', 'Oct', 'Nov']",['na'],-19.1041288,33.4777622,0.0,2099.999,uuid:429d279a-a519-4dcc-9f64-4673b0fd5d53 +74,Moz,24/11/2016,152,2017-04-09T05:47:31.000Z,2017-04-09T06:16:11.000Z,Manica,Manica,Bandula,Ruaca,15,yes,10,10,no,16,yes,no,yes,no,grass,burntbricks,cement,no,3,1,no,2,2,yes,,2.0,yes,"['Sept', 'Oct', 'Nov']",16.0,yes,no,,yes,no,no,once,no,,,no,no,"['oxen', 'cows', 'goats']",,3,yes,yes,"['motorcyle', 'bicycle', 'radio', 'sterio', 'cow_plough', 'solar_panel', 'mobile_phone']",3,['none'],['na'],-19.1121034,33.48344669,702.0,11.0,uuid:59738c17-1cda-49ee-a563-acd76f6bc487 +75,Moz,24/11/2016,153,2017-04-09T06:16:49.000Z,2017-04-09T06:28:48.000Z,Manica,Manica,Bandula,Ruaca,41,no,5,5,no,41,yes,yes,yes,yes,grass,burntbricks,earth,no,1,1,no,1,1,no,1.0,,,,,,,,,,,,,,,no,yes,['goats'],,1,yes,no,,2,"['Oct', 'Nov']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'no_food', 'day_night_hungry']",-19.11223572,33.48345393,691.0,12.0,uuid:7e7961ca-fa1c-4567-9bfa-a02f876e4e03 +76,Moz,24/11/2016,155,2017-04-09T06:35:16.000Z,2017-04-09T06:48:01.000Z,Manica,Manica,Bandula,God,5,no,4,4,no,4,no,no,no,no,grass,burntbricks,earth,no,2,1,no,2,2,no,2.0,,,,,,,,,,,,,,,yes,no,['none'],,1,yes,no,['electricity'],2,"['Jan', 'Sept', 'Oct', 'Nov', 'Dec']","['limit_variety', 'reduce_meals', 'borrow_food', 'go_forest', 'lab_ex_food']",-19.11220708,33.48342364,713.0,13.0,uuid:77b3021b-a9d6-4276-aaeb-5bfcfd413852 +77,Moz,25/11/2016,178,2017-04-09T06:54:49.000Z,2017-04-09T07:14:16.000Z,Manica,Manica,Bandula,Ruaca,20,yes,5,5,no,79,yes,yes,yes,no,mabatisloping,burntbricks,earth,no,1,2,yes,3,3,yes,,3.0,yes,"['Oct', 'Nov']",20.0,yes,no,,yes,yes,no,frequently,no,,,yes,yes,"['oxen', 'cows', 'goats']",,3,no,no,"['radio', 'cow_plough', 'solar_panel', 'mobile_phone']",3,['none'],['na'],-19.1123581,33.48355586,714.0,50.0,uuid:2186e2ec-f65a-47cc-9bc1-a0f36dd9591c +78,Moz,25/11/2016,177,2017-04-09T07:59:49.000Z,2017-04-09T08:22:34.000Z,Manica,Manica,Bandula,God,11,yes,10,10,no,13,no,no,no,no,grass,sunbricks,earth,no,2,1,no,2,2,yes,,2.0,yes,"['Oct', 'Nov']",11.0,no,no,,no,,no,more_once,no,,,yes,no,"['oxen', 'cows']",,2,yes,no,"['motorcyle', 'television', 'cow_plough', 'solar_panel', 'mobile_phone']",3,['Nov'],['na'],-19.1120537,33.48349493,713.0,9.0,uuid:87998c33-c8d2-49ec-9dae-c123735957ec +79,Moz,25/11/2016,180,2017-04-09T08:23:05.000Z,2017-04-09T08:42:02.000Z,Manica,Manica,Bandula,Ruaca,4,no,7,7,no,50,yes,yes,yes,yes,grass,muddaub,earth,no,1,1,yes,2,2,yes,,2.0,yes,"['Aug', 'Sept', 'Oct', 'Nov']",4.0,yes,no,,no,,no,never,no,,,no,yes,"['oxen', 'cows', 'goats']",,3,yes,no,"['cow_plough', 'solar_panel']",3,"['Oct', 'Nov']","['rely_less_food', 'reduce_meals', 'lab_ex_food']",-19.11204921,33.48346659,701.0,4.0,uuid:ece89122-ea99-4378-b67e-a170127ec4e6 +80,Moz,25/11/2016,181,2017-04-09T08:43:08.000Z,2017-04-09T09:07:48.000Z,Manica,Manica,Bandula,God,20,yes,11,11,no,25,yes,no,yes,no,mabatipitched,sunbricks,earth,yes,4,2,yes,1,1,yes,,1.0,yes,"['Sept', 'Oct']",23.0,yes,no,,yes,no,no,more_once,no,,,no,no,"['oxen', 'cows', 'goats']",,3,yes,no,"['cow_cart', 'motorcyle', 'bicycle', 'television', 'radio', 'cow_plough', 'solar_panel', 'mobile_phone']",3,['none'],['na'],-19.11207501,33.48351086,701.0,5.0,uuid:bf373763-dca5-4906-901b-d1bacb4f0286 +81,Moz,25/11/2016,182,2017-04-09T09:08:04.000Z,2017-04-09T09:34:12.000Z,Manica,Manica,Bandula,God,20,no,7,7,no,21,no,no,no,no,mabatipitched,muddaub,earth,no,2,3,yes,1,1,yes,,1.0,yes,"['Sept', 'Oct', 'Nov']",20.0,yes,no,,no,,no,more_once,no,,,no,no,"['oxen', 'cows']",,2,yes,no,['solar_panel'],3,"['Jan', 'Feb', 'Nov', 'Dec']",['na'],-19.11204151,33.48345447,694.0,4.0,uuid:394033e8-a6e2-4e39-bfac-458753a1ed78 +82,Moz,28/11/2016,186,2017-04-09T15:20:26.000Z,2017-04-09T15:46:14.000Z,Manica,Manica,Manica,God,24,no,7,7,no,24,yes,no,yes,no,grass,muddaub,earth,no,1,1,no,1,1,yes,,1.0,yes,"['Sept', 'Oct']",21.0,yes,no,,no,,no,more_once,no,,,no,no,"['oxen', 'cows']",,2,no,no,"['cow_plough', 'mobile_phone']",3,['none'],['na'],-19.11232028,33.48346266,690.0,10.0,uuid:268bfd97-991c-473f-bd51-bc80676c65c6 +83,Moz,28/11/2016,187,2017-04-09T15:48:14.000Z,2017-04-09T16:12:46.000Z,Manica,Manica,Bandula,God,1,yes,5,5,no,43,yes,no,no,yes,grass,muddaub,earth,no,3,2,yes,2,2,yes,,2.0,yes,"['Sept', 'Oct', 'Nov']",24.0,yes,no,,yes,no,no,more_once,no,,,no,no,"['oxen', 'cows', 'goats', 'poultry']",,4,yes,no,"['cow_cart', 'motorcyle', 'bicycle', 'television', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'mobile_phone']",3,['none'],['na'],-19.1122345,33.48349248,691.0,13.0,uuid:0a42c9ee-a840-4dda-8123-15c1bede5dfc +84,Moz,28/11/2016,195,2017-04-09T16:13:19.000Z,2017-04-09T16:35:24.000Z,Manica,Manica,Bandula,God,7,yes,5,5,no,48,yes,yes,no,no,grass,burntbricks,earth,no,3,1,no,3,3,yes,,3.0,yes,"['Sept', 'Oct', 'Nov']",5.0,yes,no,,no,,no,never,no,,,yes,no,"['oxen', 'cows', 'poultry']",,3,no,no,"['cow_cart', 'bicycle', 'radio', 'cow_plough', 'solar_torch']",2,"['Sept', 'Oct', 'Nov']",['lab_ex_food'],-19.11220559,33.48342104,706.0,9.0,uuid:2c132929-9c8f-450a-81ff-367360ce2c19 +85,Moz,28/11/2016,196,2017-04-09T18:00:41.000Z,2017-04-09T18:31:40.000Z,Manica,Manica,Bandula,God,21,yes,7,7,no,49,yes,yes,yes,yes,mabatisloping,burntbricks,earth,no,2,2,no,2,2,yes,,2.0,yes,"['Oct', 'Nov']",21.0,yes,no,,yes,no,no,more_once,no,,,no,no,"['oxen', 'cows', 'goats']",,3,yes,no,"['radio', 'cow_plough', 'mobile_phone']",3,['none'],['na'],-19.11220357,33.48340018,694.0,10.0,uuid:44e427d1-a448-4bf2-b529-7d67b2266c06 +86,Moz,28/11/2016,197,2017-04-09T18:32:09.000Z,2017-04-09T19:14:52.000Z,Manica,Manica,Bandula,God,11,no,5,5,yes,19,yes,yes,no,no,mabatisloping,burntbricks,cement,yes,1,2,no,2,2,yes,,2.0,yes,"['Aug', 'Sept', 'Oct', 'Nov']",11.0,yes,no,,no,,no,more_once,no,,,yes,no,"['oxen', 'cows', 'goats']",,3,yes,yes,"['bicycle', 'television', 'radio', 'cow_plough', 'solar_torch', 'table', 'mobile_phone']",2,['Nov'],"['rely_less_food', 'limit_variety', 'reduce_meals']",-19.11218716,33.4833828,714.0,11.0,uuid:85c99fd2-775f-40c9-8654-68223f59d091 +87,Moz,28/11/2016,198,2017-04-09T19:15:21.000Z,2017-04-09T19:27:56.000Z,Manica,Manica,Bandula,God,11,no,3,3,no,49,no,no,no,no,grass,burntbricks,earth,no,1,1,no,2,2,yes,,2.0,yes,"['Jan', 'Dec']",11.0,yes,no,,no,,no,never,no,,,yes,no,['none'],,1,yes,no,,3,['Nov'],"['reduce_meals', 'lab_ex_food']",-19.11212338,33.48338774,716.0,7.0,uuid:28c64954-739c-444c-a6e0-355878e471c8 +88,Moz,21/11/2016,201,2017-04-09T19:31:47.000Z,2017-04-09T19:45:38.000Z,Manica,Manica,Bandula,God,6,yes,4,4,no,6,yes,yes,yes,yes,grass,muddaub,earth,no,1,2,no,2,2,no,2.0,,,,,,,,,,,,,,,no,yes,"['oxen', 'cows']",,2,yes,no,"['bicycle', 'radio', 'solar_torch', 'mobile_phone']",2,"['Oct', 'Nov', 'Dec']","['borrow_food', 'lab_ex_food']",-19.11217226,33.48338504,685.0,10.0,uuid:9e79a31c-3ea5-44f0-80f9-a32db49422e3 +89,Moz,17/11/2016,202,2017-04-09T19:48:09.000Z,2017-04-09T20:08:15.000Z,Manica,Manica,Bandula,God,12,yes,12,12,no,12,no,no,no,no,mabatisloping,burntbricks,cement,no,2,4,yes,2,2,yes,,2.0,yes,"['Aug', 'Sept', 'Oct', 'Nov', 'Dec']",9.0,yes,no,,yes,no,no,more_once,no,,,no,yes,"['oxen', 'cows', 'goats']",,3,yes,no,"['cow_cart', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",3,"['Jan', 'Feb', 'Mar', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'restrict_adults', 'lab_ex_food']",-19.11218863,33.48340466,705.0,5.0,uuid:06d39051-38ef-4757-b68b-3327b1f16b9d +90,Moz,26/04/2017,72,2017-04-26T15:46:24.000Z,2017-04-26T16:13:33.000Z,Manica,Manica,Bandula,Ruaca,24,yes,6,6,no,24,yes,yes,yes,yes,grass,muddaub,earth,no,2,1,no,3,3,yes,,3.0,yes,"['Aug', 'Sept', 'Oct', 'Nov']",4.0,yes,no,,yes,yes,no,more_once,no,,,no,yes,"['oxen', 'cows', 'goats']",,3,yes,no,"['bicycle', 'radio', 'cow_plough']",2,"['Jan', 'Aug', 'Sept', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'lab_ex_food']",-19.11221489,33.48347358,716.0,5.0,uuid:c4a2c982-244e-45a5-aa4b-71fa53f99e18 +91,Moz,26/04/2017,73,2017-04-26T16:13:50.000Z,2017-04-26T16:45:01.000Z,Manica,Manica,Bandula,Ruaca,6,yes,7,7,no,9,yes,no,no,no,mabatisloping,burntbricks,cement,no,2,2,no,3,3,yes,,3.0,yes,"['Sept', 'Oct', 'Nov']",4.0,yes,yes,"['cheaper', 'less_work', 'train_outside_org']",yes,no,no,more_once,no,,,yes,no,"['oxen', 'cows', 'goats']",,3,yes,no,"['cow_cart', 'motorcyle', 'bicycle', 'television', 'radio', 'cow_plough', 'solar_panel', 'table', 'mobile_phone']",3,"['Jan', 'Sept', 'Oct']","['rely_less_food', 'limit_variety']",-19.11219747,33.48341488,714.0,4.0,uuid:ac3da862-9e6c-4962-94b6-f4c31624f207 +92,Moz,26/04/2017,76,2017-04-26T16:45:28.000Z,2017-04-26T17:26:21.000Z,Manica,Manica,Bandula,Ruaca,22,yes,17,17,no,48,yes,yes,yes,yes,mabatipitched,burntbricks,cement,no,5,2,no,6,6,yes,,6.0,yes,"['Sept', 'Oct']",22.0,yes,no,,yes,yes,no,more_once,no,,,no,no,"['oxen', 'cows', 'goats', 'poultry']",,4,yes,no,"['bicycle', 'radio', 'cow_plough', 'solar_panel', 'mobile_phone']",3,['none'],['na'],-19.11220193,33.48341762,702.0,9.0,uuid:4178a296-903a-4a8e-9cfa-0cd6143476e8 +93,Moz,27/04/2017,83,2017-04-27T12:27:31.000Z,2017-04-27T12:56:42.000Z,Manica,Manica,Bandula,Ruaca,17,yes,5,5,no,22,no,no,no,no,mabatisloping,burntbricks,earth,no,2,1,no,2,2,yes,,2.0,yes,"['Aug', 'Sept', 'Oct']",17.0,yes,no,,yes,no,no,never,no,,,no,no,"['oxen', 'cows']",,2,no,no,"['radio', 'cow_plough', 'solar_torch']",2,"['Aug', 'Sept', 'Oct']","['borrow_food', 'lab_ex_food']",-19.11231638,33.48349754,693.0,33.0,uuid:a1e9df00-c8ae-411c-931c-c7df898c68d0 +94,Moz,27/04/2017,85,2017-04-27T12:58:02.000Z,2017-04-27T13:23:06.000Z,Manica,Manica,Bandula,Ruaca,12,yes,7,7,no,40,yes,yes,yes,yes,grass,sunbricks,earth,no,3,1,no,3,3,yes,,3.0,yes,"['Sept', 'Oct']",12.0,yes,no,,no,,no,never,no,,,yes,yes,"['oxen', 'cows']",,2,yes,no,"['radio', 'cow_plough']",2,"['Oct', 'Nov']",['na'],-19.11235114,33.48358508,697.0,10.0,uuid:4d0f472b-f8ae-4026-87c9-6b5be14b0a70 +95,Moz,27/04/2017,89,2017-04-27T16:11:23.000Z,2017-04-27T16:41:41.000Z,Manica,Manica,Bandula,God,10,no,5,5,no,10,yes,yes,no,yes,mabatisloping,burntbricks,cement,yes,2,2,yes,2,2,yes,,2.0,yes,"['Sept', 'Oct']",10.0,no,no,,no,,no,never,no,,,no,yes,"['oxen', 'cows', 'goats']",,3,no,no,"['bicycle', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",3,"['Oct', 'Nov']","['rely_less_food', 'limit_variety', 'go_forest', 'lab_ex_food']",-19.11231667,33.48348329,710.0,13.0,uuid:b3b309c6-f234-4830-8b30-87d26a17ee1d +96,Moz,27/04/2017,101,2017-04-27T16:42:02.000Z,2017-04-27T18:11:54.000Z,Manica,Manica,Bandula,God,10,no,3,3,no,4,yes,yes,no,no,grass,muddaub,earth,no,1,1,no,2,2,yes,,2.0,yes,"['Sept', 'Oct', 'Nov']",10.0,yes,no,,no,,no,never,no,,,no,yes,['goats'],,1,no,yes,"['bicycle', 'solar_torch']",3,"['Sept', 'Oct', 'Nov']","['rely_less_food', 'limit_variety', 'reduce_meals', 'restrict_adults', 'borrow_food', 'lab_ex_food']",-19.11223501,33.48341767,702.0,11.0,uuid:3c174acd-e431-4523-9ad6-eb14cddca805 +97,Moz,27/04/2017,103,2017-04-27T17:38:53.000Z,2017-04-27T18:09:45.000Z,Manica,Manica,Bandula,Ruaca,50,no,6,6,no,96,yes,yes,yes,yes,mabatisloping,sunbricks,earth,no,2,1,no,2,2,yes,,2.0,yes,"['Aug', 'Sept', 'Oct', 'Nov']",10.0,yes,no,,no,,no,never,no,,,yes,no,"['oxen', 'cows', 'goats', 'pigs', 'poultry']",,5,yes,no,"['cow_cart', 'cow_plough', 'solar_panel', 'sofa_set', 'mobile_phone']",3,"['Jan', 'Feb', 'Dec']",['go_forest'],-19.11219049,33.48337002,712.0,9.0,uuid:e9d79844-ef14-493b-bbd6-d13691cc660e +98,Moz,28/04/2017,102,2017-04-28T06:27:07.000Z,2017-04-28T06:52:04.000Z,Manica,Manica,Bandula,Ruaca,15,yes,12,12,no,15,no,no,no,no,mabatisloping,burntbricks,earth,no,3,2,no,2,2,yes,,2.0,yes,"['Aug', 'Sept', 'Oct']",2.0,yes,no,,yes,yes,no,frequently,no,,,no,yes,"['cows', 'goats']",,2,no,no,"['cow_plough', 'table', 'sofa_set', 'mobile_phone']",3,"['Jan', 'Feb']",['lab_ex_food'],-19.04413333,33.40388996,691.0,11.0,uuid:76206b0b-af74-4344-b24f-81e839f0d7b0 +99,Moz,28/04/2017,78,2017-04-28T07:09:39.000Z,2017-04-28T07:31:38.000Z,Manica,Manica,Bandula,Ruaca,20,no,6,6,no,48,yes,no,yes,no,mabatipitched,burntbricks,earth,no,2,1,no,2,2,yes,,2.0,yes,"['Aug', 'Sept']",20.0,yes,no,,no,,no,more_once,no,,,no,no,"['oxen', 'cows']",,2,no,no,['cow_plough'],2,"['Aug', 'Sept', 'Oct']",['na'],-19.04402591,33.40398184,723.0,11.0,uuid:da3fa7cc-5ce9-44fd-9a78-b8982b607515 +100,Moz,28/04/2017,80,2017-04-28T09:01:47.000Z,2017-04-28T09:25:51.000Z,Manica,Manica,Bandula,Ruaca,12,no,5,5,no,12,no,no,no,no,mabatipitched,muddaub,earth,no,1,1,no,1,1,yes,,1.0,yes,"['Sept', 'Oct', 'Nov']",12.0,yes,no,,no,,no,more_once,no,,,no,yes,['none'],,1,yes,no,"['cow_cart', 'bicycle', 'radio', 'cow_plough', 'solar_panel', 'solar_torch']",3,['none'],['na'],-19.04415001,33.40390046,689.0,6.0,uuid:a85df6df-0336-46fa-a9f4-522bf6f8b438 +101,Moz,28/04/2017,104,2017-04-28T14:25:13.000Z,2017-04-28T15:18:10.000Z,Manica,Manica,Bandula,Ruaca,35,no,14,14,no,52,yes,no,yes,no,grass,sunbricks,cement,no,4,1,yes,4,4,yes,,4.0,yes,"['Aug', 'Sept']",16.0,yes,no,,yes,no,no,never,no,,,no,no,"['oxen', 'cows', 'goats', 'pigs']",,4,yes,no,"['cow_cart', 'bicycle', 'cow_plough']",3,"['Jan', 'Feb', 'Dec']","['go_forest', 'lab_ex_food']",-19.11225606,33.4833734,711.0,9.0,uuid:bb2bb365-7d7d-4fe9-9353-b21269676119 +102,Moz,28/04/2017,105,2017-04-28T15:32:38.000Z,2017-04-28T15:58:10.000Z,Manica,Manica,Bandula,Ruaca,20,yes,6,6,no,40,yes,no,yes,no,mabatisloping,sunbricks,earth,no,2,1,no,2,2,yes,,2.0,yes,"['Aug', 'Sept', 'Oct', 'Nov']",1.0,yes,no,,yes,yes,no,frequently,no,,,no,yes,"['cows', 'poultry']",,2,yes,yes,"['motorcyle', 'radio', 'cow_plough', 'solar_panel', 'mobile_phone']",3,"['Jan', 'Feb', 'Dec']",['lab_ex_food'],-19.11221203,33.48350526,735.0,11.0,uuid:af0904ee-4fdb-4090-973f-599c81ddf022 +103,Moz,30/04/2017,106,2017-04-30T05:51:18.000Z,2017-04-30T06:47:01.000Z,Manica,Manica,Bandula,God,22,yes,15,15,no,22,no,no,no,no,mabatisloping,sunbricks,cement,yes,4,5,yes,5,5,yes,,5.0,yes,"['Aug', 'Sept', 'Oct', 'Nov']",21.0,yes,no,,no,,no,never,no,,,yes,no,"['oxen', 'cows']",,2,yes,no,"['cow_cart', 'motorcyle', 'bicycle', 'radio', 'sterio', 'cow_plough', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",3,"['Oct', 'Nov', 'Dec']","['lab_ex_food', 'seek_government']",-19.11220965,33.48340866,709.0,5.0,uuid:468797c1-4a65-4f35-9c83-e28ce46972a2 +104,Moz,03/05/2017,109,2017-05-03T13:14:43.000Z,2017-05-03T13:37:53.000Z,Manica,Manica,Bandula,God,12,yes,4,4,no,12,yes,no,yes,no,grass,sunbricks,earth,no,1,1,yes,3,3,no,3.0,,,,,,,,,,,,,,,no,no,"['oxen', 'cows', 'goats']",,3,yes,no,"['cow_cart', 'bicycle', 'radio', 'cow_plough', 'table']",3,"['July', 'Aug', 'Sept', 'Oct', 'Nov']","['rely_less_food', 'limit_portion', 'reduce_meals']",-19.11222402,33.48338036,699.0,10.0,uuid:602cd3f6-4a97-49c6-80e3-bcfd5c78dfa4 +105,Moz,03/05/2017,110,2017-05-03T13:37:57.000Z,2017-05-03T13:58:06.000Z,Manica,Manica,Bandula,Ruaca,22,no,6,6,no,22,yes,yes,yes,yes,mabatisloping,sunbricks,cement,no,2,3,yes,3,3,yes,,3.0,yes,"['Aug', 'Sept', 'Oct', 'Nov']",22.0,yes,no,,no,,no,never,no,,,no,no,"['oxen', 'cows', 'goats']",,3,yes,no,"['bicycle', 'radio', 'cow_plough', 'table', 'mobile_phone']",2,['none'],['na'],-19.11219756,33.48339714,704.0,9.0,uuid:e7c51ac4-24e4-475e-88e7-f85e896945e3 +106,Moz,03/05/2017,113,2017-05-03T14:00:13.000Z,2017-05-03T14:27:03.000Z,Manica,Manica,Bandula,Ruaca,16,no,11,11,yes,26,yes,no,no,no,mabatisloping,burntbricks,cement,no,2,3,yes,3,3,yes,,3.0,yes,"['Sept', 'Oct']",2.0,yes,no,,no,,no,never,no,,,yes,no,"['oxen', 'cows', 'goats', 'poultry']",,4,no,no,"['cow_cart', 'motorcyle', 'bicycle', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",3,['none'],['na'],-19.11222682,33.48340708,706.0,12.0,uuid:01210861-aba1-4268-98d0-0260e05f5155 +107,Moz,04/05/2017,118,2017-05-04T10:26:35.000Z,2017-05-04T10:46:35.000Z,Manica,Manica,Bandula,Ruaca,6,no,5,5,no,25,yes,yes,yes,no,grass,muddaub,earth,no,2,1,no,1,1,no,1.0,,,,,,,,,,,,,,,no,yes,['none'],,1,yes,no,"['radio', 'solar_torch', 'mobile_phone']",3,"['Oct', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'borrow_food', 'lab_ex_food']",-19.11220573,33.48344178,713.0,9.0,uuid:77335b2e-8812-4a35-b1e5-ca9ab626dfea +108,Moz,04/05/2017,125,2017-05-04T10:47:05.000Z,2017-05-04T11:16:05.000Z,Manica,Manica,Bandula,Ruaca,7,yes,5,5,no,14,no,yes,no,yes,mabatisloping,burntbricks,earth,no,1,1,no,3,3,yes,,3.0,yes,"['Aug', 'Sept', 'Oct', 'Nov']",3.0,yes,yes,['less_work'],no,,no,more_once,no,,,yes,yes,"['oxen', 'cows']",,2,no,yes,"['bicycle', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'mobile_phone']",3,"['Jan', 'Sept', 'Oct', 'Nov', 'Dec']","['borrow_food', 'lab_ex_food']",-19.11218005,33.4834101,682.0,11.0,uuid:02b05c68-302e-4e7a-b229-81cb1377fd29 +109,Moz,04/05/2017,119,2017-05-04T11:16:57.000Z,2017-05-04T11:38:38.000Z,Manica,Manica,Bandula,Ruaca-Nhamuenda,14,no,3,3,yes,14,yes,no,no,no,grass,muddaub,earth,no,4,1,no,2,2,yes,,2.0,no,,3.0,yes,no,,no,,no,never,no,,,no,no,"['oxen', 'cows', 'goats', 'poultry']",,4,no,no,"['bicycle', 'cow_plough', 'solar_panel', 'mobile_phone']",3,['none'],['na'],-19.11225658,33.48334839,706.0,5.0,uuid:fa201fce-4e94-44b8-b435-c558c2e1ed55 +110,Moz,11/05/2017,115,2017-05-11T05:24:25.000Z,2017-05-11T05:41:56.000Z,Manica,Manica,Bandula,Ruaca - Nhamuenda,16,no,4,4,no,16,yes,yes,no,no,mabatisloping,sunbricks,cement,no,3,2,yes,2,2,no,2.0,,,,,,,,,,,,,,,yes,no,"['oxen', 'cows', 'goats']",,3,yes,no,"['cow_cart', 'motorcyle', 'bicycle', 'television', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",3,['none'],['na'],-19.1114691,33.4761047,0.0,20.0,uuid:628fe23d-188f-43e4-a203-a4bf3257d461 +111,Moz,11/05/2017,108,2017-05-11T05:42:08.000Z,2017-05-11T06:08:58.000Z,Manica,Manica,Bandula,God,22,no,15,15,no,22,no,yes,no,yes,mabatisloping,burntbricks,cement,no,3,2,yes,3,3,yes,,3.0,yes,"['Sept', 'Oct', 'Nov']",16.0,yes,no,,no,,no,never,no,,,no,no,"['oxen', 'cows', 'goats', 'poultry']",,4,yes,no,"['cow_cart', 'bicycle', 'radio', 'cow_plough', 'solar_panel', 'table', 'mobile_phone']",3,"['Aug', 'Sept', 'Oct', 'Nov']","['rely_less_food', 'limit_portion', 'reduce_meals']",-19.1114691,33.4761047,0.0,20.0,uuid:e4f4d6ba-e698-45a5-947f-ba6da88cc22b +112,Moz,11/05/2017,116,2017-05-11T06:09:56.000Z,2017-05-11T06:22:19.000Z,Manica,Manica,Bandula,Ruaca-Nhamuenda,21,yes,5,5,no,25,no,no,no,no,grass,burntbricks,cement,no,2,3,yes,1,1,no,1.0,,,,,,,,,,,,,,,no,yes,"['oxen', 'cows', 'goats']",,3,yes,no,"['motorcyle', 'bicycle', 'television', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",3,"['Jan', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'lab_ex_food']",-19.1114691,33.4761047,0.0,20.0,uuid:cfee6297-2c0e-4f8a-94cc-9aaee0bd64cb +113,Moz,11/05/2017,117,2017-05-11T06:28:02.000Z,2017-05-11T06:55:35.000Z,Manica,Manica,Bandula,Ruaca-Nhamuenda,1,no,10,10,no,28,yes,yes,yes,no,grass,muddaub,cement,no,1,4,no,1,1,no,1.0,,,,,,,,,,,,,,,no,yes,['none'],,1,yes,no,"['motorcyle', 'television', 'radio', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",3,"['Jan', 'Feb', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'restrict_adults', 'borrow_food', 'lab_ex_food']",-19.1114691,33.4761047,0.0,20.0,uuid:3fe626b3-c794-48e1-a80f-5bfe440c507b +114,Moz,18/05/2017,144,2017-05-18T04:36:23.000Z,2017-05-18T05:02:38.000Z,Manica,Manica,Bandula,Ruaca,5,no,7,7,no,5,yes,yes,yes,yes,mabatisloping,burntbricks,cement,no,3,4,no,2,2,yes,,2.0,yes,"['Sept', 'Oct', 'Nov']",5.0,yes,no,,no,,yes,frequently,yes,['farming'],,no,no,"['oxen', 'cows', 'goats', 'sheep']",,4,yes,no,"['cow_cart', 'television', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",2,['none'],['na'],-19.11218801,33.48342233,710.0,5.0,uuid:0670cef6-d233-4852-89d8-36955261b0a3 +115,Moz,18/05/2017,143,2017-05-18T05:55:04.000Z,2017-05-18T06:37:10.000Z,Manica,Manica,Bandula,Ruaca,24,yes,10,10,no,24,yes,no,no,no,grass,burntbricks,earth,no,3,2,yes,3,3,yes,,3.0,yes,"['Sept', 'Oct', 'Nov']",12.0,yes,no,,no,,no,frequently,no,,,yes,no,"['oxen', 'cows', 'goats']",,3,yes,no,"['cow_cart', 'motorcyle', 'television', 'radio', 'cow_plough', 'solar_torch', 'table', 'mobile_phone']",3,"['Jan', 'Dec']","['rely_less_food', 'limit_variety']",-19.1124845,33.4763322,0.0,1911.0,uuid:9a096a12-b335-468c-b3cc-1191180d62de +116,Moz,18/05/2017,150,2017-05-18T10:37:37.000Z,2017-05-18T10:56:00.000Z,Manica,Manica,Bandula,Ruaca,8,no,7,7,no,8,no,yes,no,yes,grass,muddaub,earth,no,2,1,no,2,2,yes,,2.0,yes,"['Apr', 'May', 'June', 'July', 'Aug', 'Sept', 'Oct', 'Nov']",8.0,yes,no,,no,,no,never,no,,,no,yes,['cows'],,1,no,yes,['mobile_phone'],3,"['Sept', 'Oct', 'Nov']","['reduce_meals', 'lab_ex_food']",-19.11147739,33.47618369,709.0,17.0,uuid:92613d0d-e7b1-4d62-8ea4-451d7cd0a982 +117,Moz,18/05/2017,159,2017-05-18T10:56:16.000Z,2017-05-18T11:07:35.000Z,Manica,Manica,Bandula,God,17,yes,4,4,no,24,yes,no,yes,no,grass,sunbricks,earth,no,2,1,no,2,2,yes,,2.0,no,,2.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,no,no,"['radio', 'solar_panel', 'solar_torch']",3,"['Sept', 'Oct', 'Nov']",['lab_ex_food'],-19.11149498,33.47617506,712.0,28.0,uuid:37577f91-d665-443e-8d70-b914954cef4b +118,Moz,03/06/2017,160,2017-06-03T05:08:49.000Z,2017-06-03T05:32:19.000Z,Manica,Manica,Bandula,God,3,yes,7,7,no,13,yes,yes,yes,yes,mabatisloping,burntbricks,earth,no,2,2,no,3,3,yes,,3.0,yes,"['Jan', 'Dec']",3.0,yes,no,,yes,yes,no,frequently,no,,,yes,yes,"['oxen', 'cows']",,2,yes,no,"['cow_cart', 'cow_plough', 'solar_torch', 'mobile_phone']",2,['Nov'],['lab_ex_food'],-19.11218456,33.4834495,711.0,12.0,uuid:f22831ec-6bc3-4b73-9197-4b01e01abb66 +119,Moz,03/06/2017,165,2017-06-03T05:32:33.000Z,2017-06-03T05:51:49.000Z,Manica,Manica,Bandula,Ruaca,14,no,9,9,no,14,no,no,no,no,grass,burntbricks,earth,no,1,1,yes,2,2,yes,,2.0,yes,"['Aug', 'Sept', 'Oct', 'Nov', 'Dec']",10.0,yes,no,,no,,no,never,no,,,no,no,"['oxen', 'cows', 'goats']",,3,yes,no,"['cow_cart', 'motorcyle', 'bicycle', 'television', 'radio', 'cow_plough', 'solar_torch', 'electricity', 'table', 'sofa_set', 'mobile_phone', 'fridge']",3,['none'],['na'],-19.11217437,33.48346513,708.0,9.0,uuid:62f3f7af-f0f3-4f88-b9e0-acf8baa49ae4 +120,Moz,03/06/2017,166,2017-06-03T05:53:28.000Z,2017-06-03T06:25:06.000Z,Manica,Manica,Bandula,Ruaca,16,no,11,11,no,16,yes,yes,yes,yes,grass,muddaub,earth,no,2,1,no,3,3,yes,,3.0,yes,"['Aug', 'Sept', 'Oct']",2.0,yes,no,,no,,no,never,no,,,no,yes,['goats'],,1,yes,no,"['bicycle', 'solar_torch', 'mobile_phone']",2,"['Feb', 'Mar']","['go_forest', 'lab_ex_food']",-19.1138589,33.4826653,0.0,1799.999,uuid:40aac732-94df-496c-97ba-5b67f59bcc7a +121,Moz,03/06/2017,167,2017-06-03T06:25:09.000Z,2017-06-03T06:45:06.000Z,Manica,Manica,Bandula,Ruaca,16,no,8,8,no,24,yes,no,yes,no,grass,muddaub,earth,no,5,1,no,2,2,yes,,2.0,yes,"['July', 'Aug', 'Sept', 'Oct', 'Nov', 'Dec']",16.0,yes,no,,no,,no,never,no,,,no,yes,"['oxen', 'cows', 'goats']",,3,yes,yes,"['motorcyle', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",2,"['Jan', 'Nov', 'Dec']",['lab_ex_food'],-19.1149887,33.4882685,0.0,2000.0,uuid:a9d1a013-043b-475d-a71b-77ed80abe970 +122,Moz,03/06/2017,174,2017-06-03T06:50:47.000Z,2017-06-03T07:20:21.000Z,Manica,Manica,Bandula,Ruaca,13,no,12,12,no,25,yes,yes,yes,yes,grass,burntbricks,cement,no,2,2,yes,3,3,yes,,3.0,yes,"['Sept', 'Oct', 'Nov', 'Dec']",13.0,yes,yes,['cheaper'],no,,no,never,no,,,yes,no,"['oxen', 'cows', 'goats']",,3,yes,no,"['car', 'lorry', 'motorcyle', 'radio', 'sterio', 'cow_plough', 'solar_panel', 'solar_torch', 'table', 'sofa_set', 'mobile_phone', 'fridge']",3,"['Jan', 'Feb', 'Dec']",['lab_ex_food'],-19.11216751,33.48340539,703.0,3.0,uuid:43ec6132-478c-4f87-878d-fb3c0c4d0c74 +123,Moz,03/06/2017,175,2017-06-03T07:21:48.000Z,2017-06-03T07:51:29.000Z,Manica,Manica,Bandula,Ruaca,11,no,7,7,no,36,yes,yes,yes,yes,mabatisloping,burntbricks,earth,no,2,1,no,2,2,yes,,2.0,yes,"['Oct', 'Nov']",11.0,yes,no,,no,,no,never,no,,,no,no,"['oxen', 'cows', 'goats', 'poultry']",,4,yes,yes,"['motorcyle', 'bicycle', 'radio', 'sterio', 'cow_plough', 'solar_panel', 'table', 'mobile_phone']",2,"['Jan', 'Oct', 'Nov', 'Dec']",['na'],-19.11217963,33.48336019,705.0,5.0,uuid:64fc743e-8176-40f6-8ae4-36ae97fac1d9 +124,Moz,03/06/2017,189,2017-06-03T15:23:01.000Z,2017-06-03T15:53:10.000Z,Manica,Manica,Bandula,Ruaca,10,yes,15,15,no,16,no,yes,no,yes,mabatisloping,sunbricks,earth,no,2,1,yes,3,3,yes,,3.0,yes,"['Aug', 'Sept', 'Oct', 'Nov', 'Dec']",7.0,yes,no,,no,,no,never,no,,,no,yes,"['oxen', 'cows', 'goats']",,3,yes,no,"['motorcyle', 'radio', 'sterio', 'cow_plough', 'solar_panel', 'table', 'mobile_phone']",3,['Nov'],['na'],-19.11216796,33.48341529,714.0,4.0,uuid:c17e374c-280b-4e78-bf21-74a7c1c73492 +125,Moz,03/06/2017,191,2017-06-03T15:54:03.000Z,2017-06-03T16:17:26.000Z,Manica,Manica,Bandula,Ruaca,3,no,10,10,no,5,yes,no,yes,no,mabatisloping,burntbricks,cement,yes,1,4,yes,2,2,yes,,2.0,yes,"['Sept', 'Oct', 'Nov']",3.0,yes,no,,no,,no,never,no,,,no,no,['cows'],,1,yes,no,"['radio', 'cow_plough', 'solar_panel', 'solar_torch', 'mobile_phone']",2,"['Oct', 'Nov', 'Dec']","['go_forest', 'lab_ex_food']",-19.11219207,33.48338051,709.0,9.0,uuid:dad53aff-b520-4015-a9e3-f5fdf9168fe1 +126,Moz,03/06/2017,192,2017-06-03T16:17:55.000Z,2017-06-03T17:16:39.000Z,Manica,Manica,Bandula,Chirodzo,15,yes,9,9,no,20,yes,yes,yes,yes,grass,burntbricks,cement,yes,4,1,no,3,3,yes,,3.0,yes,"['Sept', 'Nov']",5.0,yes,no,,no,,no,once,no,,,yes,yes,['none'],,1,yes,no,"['bicycle', 'television', 'radio', 'sterio', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",3,"['Jan', 'Nov', 'Dec']",['borrow_food'],-19.11215404,33.48335905,705.0,4.0,uuid:f94409a6-e461-4e4c-a6fb-0072d3d58b00 +127,Moz,18/05/2017,126,2017-05-18T04:13:37.000Z,2017-05-18T04:35:47.000Z,Manica,Manica,Bandula,Ruaca,5,yes,3,3,no,7,yes,yes,yes,yes,grass,burntbricks,earth,no,1,1,no,2,2,yes,,2.0,yes,"['Sept', 'Oct', 'Nov']",4.0,yes,no,,no,,no,more_once,no,,,yes,yes,"['oxen', 'cows', 'goats']",,3,yes,no,"['motorcyle', 'radio', 'solar_panel']",3,"['Oct', 'Nov', 'Dec']","['rely_less_food', 'lab_ex_food']",-19.11219355,33.48337856,700.0,7.0,uuid:69caea81-a4e5-4e8d-83cd-9c18d8e8d965 +128,Moz,04/06/2017,193,2017-06-04T09:36:20.000Z,2017-06-04T10:13:32.000Z,Manica,Manica,Bandula,Ruaca,10,no,7,7,no,10,no,no,no,no,mabatisloping,cement,cement,yes,3,3,yes,4,4,yes,,4.0,yes,"['Oct', 'Nov', 'Dec']",10.0,yes,no,,no,,no,more_once,no,,,no,yes,"['oxen', 'cows', 'goats']",,3,no,no,"['car', 'lorry', 'television', 'radio', 'sterio', 'cow_plough', 'solar_torch', 'electricity', 'table', 'sofa_set', 'mobile_phone', 'fridge']",3,['none'],['na'],-19.11215668,33.48339039,720.0,9.0,uuid:5ccc2e5a-ea90-48b5-8542-69400d5334df +129,Moz,04/06/2017,194,2017-06-04T10:13:36.000Z,2017-06-04T10:32:06.000Z,Manica,Manica,Bandula,Ruaca,5,no,4,4,no,5,no,no,yes,no,grass,muddaub,earth,no,2,1,no,2,2,yes,,2.0,yes,"['Aug', 'Sept', 'Oct']",2.0,yes,no,,no,,no,more_once,no,,,no,yes,['poultry'],,1,no,no,"['radio', 'solar_panel', 'solar_torch', 'mobile_phone']",3,"['Sept', 'Oct', 'Nov']",['lab_ex_food'],-19.11227133,33.48347111,719.0,10.0,uuid:95c11a30-d44f-40c4-8ea8-ec34fca6bbbf +130,Moz,04/06/2017,199,2017-06-04T10:33:55.000Z,2017-06-04T10:52:22.000Z,Manica,Manica,Bandula,Chirodzo,17,yes,7,7,no,17,no,no,no,no,mabatisloping,burntbricks,cement,yes,1,2,no,2,2,yes,,2.0,yes,"['Sept', 'Oct', 'Nov']",6.0,yes,no,,yes,yes,no,more_once,yes,"['farming', 'business']",,yes,no,"['oxen', 'cows']",,2,yes,no,"['cow_cart', 'lorry', 'motorcyle', 'computer', 'television', 'radio', 'sterio', 'cow_plough', 'solar_panel', 'solar_torch', 'electricity', 'mobile_phone']",3,"['Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'restrict_adults', 'lab_ex_food']",-19.11227751,33.48338952,711.0,5.0,uuid:ffc83162-ff24-4a87-8709-eff17abc0b3b +131,Moz,04/06/2017,200,2017-06-04T10:52:46.000Z,2017-06-04T11:08:13.000Z,Manica,Manica,Bandula,Chirodzo,20,yes,8,8,no,20,no,yes,no,yes,mabatisloping,burntbricks,cement,no,1,2,yes,2,2,no,2.0,,,,,,,,,,,,,,,no,yes,"['oxen', 'goats', 'pigs']",,3,yes,no,"['radio', 'cow_plough', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",3,"['Oct', 'Nov']","['rely_less_food', 'restrict_adults', 'borrow_food']",-19.11218302,33.48337175,681.0,20.0,uuid:aa77a0d7-7142-41c8-b494-483a5b68d8a7 +132,Moz,11/04/2017,2,2017-04-11T14:13:11.000Z,2017-04-13T06:46:37.000Z,Nampula,Nampula,Namikopo,Namikopo,2,no,6,6,yes,4,no,no,no,no,grass,muddaub,earth,no,1,2,no,2,2,no,2.0,,,,,,,,,,,,,,,no,no,['none'],,1,no,no,,2,"['Feb', 'Mar', 'Apr']","['rely_less_food', 'limit_portion', 'borrow_food', 'no_food', 'lab_ex_food']",-19.11215974,33.48339748,719.0,5.0,uuid:159cb921-0c77-4e1e-aedc-5eba3e9102a3 +133,Moz,12/04/2017,4,2017-04-12T07:44:51.000Z,2017-04-13T06:45:59.000Z,Nampula,Nampula,Namikopo,Namikopo,12,no,2,2,no,65,no,no,no,yes,mabatisloping,muddaub,earth,no,1,2,yes,3,3,no,3.0,,,,,,,,,,,,,,,no,no,['none'],,1,no,no,,2,"['Jan', 'Feb', 'Mar']",['limit_variety'],-19.04475097,33.40409627,739.0,49.0,uuid:7a594aa8-231d-4086-b072-d9b3c2ccfb42 +134,Moz,17/06/2017,1,2017-06-17T06:02:27.000Z,2017-06-17T06:50:50.000Z,Sofala,Nhamatanda,Lamego,Nhansato,7,yes,5,5,yes,9,yes,yes,yes,yes,mabatisloping,burntbricks,earth,no,3,3,yes,4,4,yes,,4.0,no,,7.0,yes,no,,yes,yes,no,never,no,,,yes,no,"['goats', 'pigs']",,2,yes,no,"['bicycle', 'radio', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",2,['none'],['na'],-19.38398448,34.36420606,23.0,4.0,uuid:cf33dea7-7fdb-43f9-8b9f-c5d92d63a1c7 +135,Moz,17/06/2017,4,2017-06-17T06:53:26.000Z,2017-06-17T07:28:07.000Z,Sofala,Nhamatanda,Lamego,Nhansato,9,yes,7,7,no,27,yes,no,yes,no,grass,burntbricks,earth,no,1,2,no,3,3,yes,,3.0,no,,2.0,yes,no,,yes,yes,no,never,no,,,no,yes,['sheep'],,1,yes,no,"['bicycle', 'radio', 'solar_panel', 'solar_torch', 'mobile_phone']",3,"['Jan', 'Oct', 'Nov', 'Dec']","['limit_variety', 'lab_ex_food']",-19.38389493,34.36418707,32.0,11.0,uuid:d4934aad-96e2-43c7-8d82-1c14bbd20e0d +136,Moz,17/06/2017,9,2017-06-17T07:32:09.000Z,2017-06-17T07:57:24.000Z,Sofala,Nhamatanda,Lamego,Nhansato,22,yes,2,2,no,22,no,no,no,no,grass,muddaub,earth,no,1,2,no,3,3,yes,,3.0,yes,"['May', 'June', 'July', 'Aug', 'Sept', 'Oct']",22.0,yes,no,,yes,no,no,never,no,,,no,no,"['pigs', 'poultry']",,2,no,no,"['bicycle', 'radio', 'solar_panel', 'mobile_phone']",3,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'lab_ex_food']",-19.38410401,34.36431072,-4.0,30.0,uuid:50e494bc-e0bf-4910-92a8-a7646a93256d +137,Moz,17/06/2017,10,2017-06-17T07:57:47.000Z,2017-06-17T08:29:56.000Z,Sofala,Nhamatanda,Lamego,Nhansato,20,yes,8,8,no,20,no,no,no,no,grass,muddaub,earth,no,3,2,no,2,2,yes,,2.0,yes,"['June', 'July', 'Aug', 'Sept', 'Oct', 'Nov', 'Dec']",20.0,no,no,,yes,no,no,never,no,,,yes,yes,"['pigs', 'poultry']",,2,no,no,"['bicycle', 'radio', 'sterio', 'solar_torch', 'mobile_phone']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'borrow_food', 'go_forest', 'lab_ex_food']",-19.38402658,34.36435587,-3.0,10.0,uuid:242648cb-a33c-44a2-a25d-1b48aaad0236 +138,Moz,17/06/2017,3,2017-06-17T08:33:09.000Z,2017-06-17T08:51:21.000Z,Sofala,Nhamatanda,Lamego,Nhansato,20,no,4,4,no,4,no,no,no,no,grass,burntbricks,earth,no,1,1,no,3,3,yes,,3.0,no,,3.0,yes,no,,no,,no,never,no,,,yes,yes,['goats'],,1,yes,yes,"['radio', 'solar_panel', 'solar_torch', 'mobile_phone']",3,"['Jan', 'Nov', 'Dec']","['rely_less_food', 'restrict_adults', 'lab_ex_food']",-19.38403877,34.36428872,3.0,12.0,uuid:7de16ed6-a6f8-45ec-ac34-b1b3f5cc09bd +139,Moz,17/06/2017,25,2017-06-17T08:51:24.000Z,2017-06-23T14:42:33.000Z,Sofala,Nhamatanda,Lamego,Nhansato,45,no,5,5,no,65,no,no,no,no,grass,sunbricks,earth,no,2,2,no,1,1,yes,,1.0,yes,"['Oct', 'Nov']",4.0,yes,no,,no,,no,never,no,,,yes,yes,['none'],,1,yes,no,['solar_panel'],3,"['Sept', 'Oct', 'Nov']","['limit_portion', 'reduce_meals', 'lab_ex_food']",-19.38397881,34.36433516,28.0,8.0,uuid:7ef28793-6419-4763-85a3-6f0b96694b37 +140,Moz,22/06/2017,2,2017-06-22T07:32:51.000Z,2017-06-22T08:15:21.000Z,Sofala,Nhamatanda,Lamego,Nhansato,25,no,5,5,yes,25,no,no,no,no,grass,burntbricks,earth,no,1,1,yes,3,3,yes,,3.0,no,,8.0,yes,no,,no,,no,never,no,,,yes,yes,['none'],,1,yes,no,"['bicycle', 'radio', 'solar_panel', 'solar_torch', 'mobile_phone']",2,"['Jan', 'Feb', 'Nov', 'Dec']","['rely_less_food', 'borrow_food', 'lab_ex_food']",-19.29882071,34.38481958,-8.0,13.0,uuid:08e76e63-8959-4264-be56-4fff09944483 +141,Moz,22/06/2017,6,2017-06-22T08:29:23.000Z,2017-06-22T09:05:15.000Z,Sofala,Nhamatanda,Lamego,Nhansato,20,no,8,8,no,32,yes,yes,yes,yes,grass,sunbricks,earth,no,1,2,no,3,3,yes,,3.0,no,,20.0,yes,no,,no,,no,never,yes,['farming'],,yes,no,"['goats', 'pigs']",,2,yes,no,"['bicycle', 'radio', 'solar_torch']",3,"['Jan', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'borrow_food', 'lab_ex_food']",-19.29897236,34.38478469,16.0,5.0,uuid:aaee5983-ca3e-4554-ac9d-9afb13c15a29 +142,Moz,22/06/2017,7,2017-06-22T09:06:11.000Z,2017-06-22T09:37:32.000Z,Sofala,Nhamatanda,Lamego,Nhansato,7,yes,6,6,yes,11,yes,yes,yes,yes,grass,sunbricks,earth,no,2,1,no,5,5,yes,,5.0,no,,6.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,yes,yes,"['bicycle', 'radio', 'solar_torch', 'mobile_phone']",3,"['Jan', 'Feb']","['limit_variety', 'reduce_meals', 'borrow_food', 'lab_ex_food']",-19.29892635,34.38484077,32.0,5.0,uuid:d659f3b6-b330-4a4f-be95-b6e49ade3278 +143,Moz,22/06/2017,8,2017-06-22T09:39:40.000Z,2017-06-22T09:56:02.000Z,Sofala,Nhamatanda,Lamego,Nhansato,7,no,5,5,no,7,yes,no,yes,no,grass,sunbricks,earth,no,2,1,no,2,2,yes,,2.0,no,,7.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,yes,no,"['sterio', 'solar_torch', 'mobile_phone']",3,"['Jan', 'Feb']","['rely_less_food', 'borrow_food', 'lab_ex_food']",-19.29895979,34.38482849,43.0,5.0,uuid:4694511b-602c-4dc5-8602-14a867c71c08 +144,Moz,22/06/2017,11,2017-06-22T10:02:35.000Z,2017-06-22T11:42:16.000Z,Sofala,Nhamatanda,Lamego,Nhansato,12,no,8,8,yes,12,no,no,no,no,grass,muddaub,earth,no,2,1,no,2,2,yes,,2.0,yes,"['Aug', 'Sept', 'Oct']",12.0,yes,no,,no,,no,never,no,,,no,yes,"['pigs', 'poultry']",,2,yes,no,"['bicycle', 'radio', 'sterio', 'mobile_phone']",2,"['Jan', 'Feb']","['rely_less_food', 'limit_variety', 'borrow_food', 'day_night_hungry', 'lab_ex_food']",-19.40661027,34.43743139,17.0,6.0,uuid:c959b0d3-7ebb-4a10-8cdf-d5badb3be296 +145,Moz,22/06/2017,12,2017-06-22T11:48:38.000Z,2017-06-22T12:18:31.000Z,Sofala,Nhamatanda,Lamego,Nhansato,43,yes,6,6,no,43,no,yes,no,yes,grass,sunbricks,earth,no,1,3,yes,2,2,no,2.0,,,,,,,,,,,,,,,yes,no,['none'],,1,yes,no,"['bicycle', 'radio', 'solar_panel', 'mobile_phone']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_variety', 'borrow_food', 'go_forest']",-19.40658067,34.4374628,-5.0,5.0,uuid:bc54082a-baef-4635-ac72-58e5011a0aa7 +146,Moz,23/06/2017,13,2017-06-23T06:57:40.000Z,2017-06-23T07:31:36.000Z,Sofala,Nhamatanda,Lamego,Nhansato,23,yes,3,3,no,23,no,no,no,no,grass,sunbricks,cement,no,2,1,no,3,3,yes,,3.0,yes,"['Sept', 'Oct', 'Nov']",23.0,yes,yes,['cheaper'],yes,yes,no,never,no,,,yes,no,"['poultry', 'none']",,2,yes,no,"['television', 'tractor', 'solar_panel', 'mobile_phone']",2,"['Jan', 'Feb']",['limit_variety'],-19.2879417,34.20577802,62.0,4.0,uuid:9b7d8a74-1586-49fb-9783-cd8752442ac5 +147,Moz,23/06/2017,14,2017-06-23T07:34:58.000Z,2017-06-23T07:58:36.000Z,Sofala,Nhamatanda,Lamego,Nhansato,42,yes,7,7,no,42,no,no,no,no,grass,sunbricks,earth,no,2,2,no,3,3,yes,,3.0,yes,['Aug'],22.0,yes,no,,no,,no,never,no,,,no,no,['poultry'],,1,yes,no,"['motorcyle', 'radio', 'sterio', 'solar_panel', 'mobile_phone']",2,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'reduce_meals', 'go_forest']",-19.290154,34.20626915,60.0,5.0,uuid:4c96ef7f-e5f8-429a-9593-93cb4663b0cf +148,Moz,23/06/2017,15,2017-06-23T08:01:44.000Z,2017-06-23T08:34:34.000Z,Sofala,Nhamatanda,Lamego,Nhansato,42,yes,7,7,no,42,no,no,no,no,grass,muddaub,earth,no,2,2,no,2,2,yes,,2.0,yes,"['June', 'July', 'Aug', 'Sept', 'Oct']",42.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,yes,no,"['bicycle', 'radio', 'cow_plough', 'solar_panel', 'table', 'mobile_phone']",3,"['Jan', 'Feb']","['rely_less_food', 'limit_portion', 'lab_ex_food']",-19.27281975,34.20381567,75.0,5.0,uuid:d59a5dfa-65a0-45c6-b2f2-43c0e563674a +149,Moz,23/06/2017,16,2017-06-23T08:48:54.000Z,2017-06-23T09:19:03.000Z,Sofala,Nhamatanda,Lamego,Nhansato,25,yes,5,5,no,25,no,no,no,no,grass,burntbricks,earth,no,2,4,yes,4,4,no,4.0,,,,,,,,,,,,,,,no,no,['goats'],,1,yes,no,"['bicycle', 'radio', 'table', 'mobile_phone']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals']",-19.30333993,34.25722303,45.0,5.0,uuid:64589d7b-4120-4fbd-a27e-425518a7bc6a +150,Moz,23/06/2017,5,2017-06-23T09:23:41.000Z,2017-06-24T11:26:57.000Z,Sofala,Nhamatanda,Lamego,Nhansato,18,no,5,5,no,22,yes,yes,yes,yes,grass,sunbricks,earth,no,1,1,no,2,2,yes,,2.0,no,,4.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,"['bicycle', 'radio', 'solar_panel', 'solar_torch', 'mobile_phone']",3,"['Jan', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'lab_ex_food']",-19.35829038,34.29253063,3.0,5.0,uuid:fc0d05dd-6da5-4c2c-8682-9b8ee61486d9 +151,Moz,23/06/2017,17,2017-06-23T09:50:58.000Z,2017-06-23T10:10:02.000Z,Sofala,Nhamatanda,Lamego,Nhansato,11,yes,5,5,no,11,no,yes,no,no,grass,burntbricks,earth,no,1,2,no,3,3,no,3.0,,,,,,,,,,,,,,,no,yes,['none'],,1,yes,no,['radio'],3,"['Sept', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'lab_ex_food']",-19.3738386,34.2538116,19.0,5.0,uuid:30781fce-6e6b-404b-80aa-d3db1b99094c +152,Moz,23/06/2017,18,2017-06-23T10:12:02.000Z,2017-06-23T11:19:22.000Z,Sofala,Nhamatanda,Lamego,Nhansato,42,yes,6,6,yes,45,no,no,no,no,grass,muddaub,earth,no,2,2,no,4,4,yes,,4.0,no,,21.0,yes,no,,no,,no,never,no,,,yes,yes,['none'],,1,yes,no,"['bicycle', 'sterio', 'solar_panel', 'solar_torch', 'mobile_phone']",3,"['Jan', 'Feb', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'lab_ex_food']",-19.36809049,34.26296784,46.0,5.0,uuid:51a4408e-bc77-4c47-9c43-fee305a8ead2 +153,Moz,23/06/2017,19,2017-06-23T10:36:58.000Z,2017-06-23T10:55:30.000Z,Sofala,Nhamatanda,Lamego,Nhansato,45,yes,2,2,no,45,no,no,no,no,grass,muddaub,earth,no,2,1,no,3,3,no,3.0,,,,,,,,,,,,,,,no,no,['none'],,1,no,no,,3,"['Jan', 'Feb', 'Mar', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'no_food']",-19.32893291,34.31076777,24.0,10.0,uuid:dc799843-449c-42a9-9abb-7d62a982ea8f +154,Moz,23/06/2017,20,2017-06-23T10:55:59.000Z,2017-06-23T11:16:19.000Z,Sofala,Nhamatanda,Lamego,Nhansato,49,yes,5,5,no,45,no,no,no,no,grass,sunbricks,earth,yes,1,1,no,3,3,no,3.0,,,,,,,,,,,,,,,yes,no,['none'],,1,yes,no,['bicycle'],3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals']",-19.28611445,34.22582387,43.0,4.0,uuid:983add41-b0c8-4e9b-aa1e-85debbb240f2 +155,Moz,24/06/2017,21,2017-06-24T09:14:05.000Z,2017-06-24T09:33:14.000Z,Sofala,Nhamatanda,Lamego,Nhansato,8,no,6,6,no,8,no,yes,no,no,grass,muddaub,earth,no,1,3,yes,2,2,no,2.0,,,,,,,,,,,,,,,yes,no,"['pigs', 'poultry']",,2,no,no,"['television', 'radio', 'mobile_phone']",3,"['Jan', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals']",-19.1115242,33.4760439,0.0,22.318,uuid:416fdd6d-f0bb-413d-aa40-602ea2c7c146 +156,Moz,24/06/2017,22,2017-06-24T09:33:20.000Z,2017-06-24T09:45:32.000Z,Sofala,Nhamatanda,Lamego,Nhansato,7,no,5,5,no,7,no,no,no,no,grass,sunbricks,earth,no,1,1,yes,3,3,yes,,3.0,no,,4.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,['solar_panel'],3,"['Jan', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals']",-19.1115242,33.4760439,0.0,21.953,uuid:cf678826-6a9e-4ce2-ada1-569d2c6939c1 +157,Moz,24/06/2017,23,2017-06-24T10:02:09.000Z,2017-06-24T10:24:01.000Z,Sofala,Nhamatanda,Lamego,Nhansato,50,yes,3,3,yes,50,no,no,no,no,grass,sunbricks,earth,no,2,1,no,4,4,yes,,4.0,no,,30.0,yes,no,,no,,no,never,no,,,yes,no,['none'],,1,yes,no,,3,"['Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals']",-19.1115117,33.4760548,0.0,21.977,uuid:32f32401-eb07-4c11-9b2a-5ab765ecf614 +158,Moz,24/06/2017,24,2017-06-24T10:24:04.000Z,2017-06-24T11:05:56.000Z,Sofala,Nhamatanda,Lamego,Nhansato,3,no,5,5,no,3,no,no,no,no,grass,sunbricks,earth,no,1,1,no,2,2,yes,,2.0,no,,3.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,,3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'lab_ex_food']",-19.11154348,33.4761323,705.0,54.0,uuid:da757d90-8245-42e7-bc00-4fe1e352eb7b +159,Moz,17/06/2017,26,2017-06-17T09:17:09.000Z,2017-06-22T09:59:04.000Z,Sofala,Nhamatanda,Lamego,Nhansato,12,no,5,5,no,35,yes,yes,yes,yes,grass,sunbricks,earth,no,1,2,no,1,1,no,1.0,,,,,,,,,,,,,,,yes,yes,['none'],,1,no,no,"['bicycle', 'table']",3,"['Oct', 'Nov']","['reduce_meals', 'lab_ex_food']",-19.38400777,34.36429742,5.0,5.0,uuid:b4d6edf2-de19-4e7a-8e12-cf8c7239c0e0 +160,Moz,24/06/2017,27,2017-06-24T11:06:28.000Z,2017-06-24T11:25:22.000Z,Sofala,Nhamatanda,Lamego,Nhansato,20,no,10,10,no,10,no,no,no,no,grass,sunbricks,earth,no,2,2,no,1,1,yes,,1.0,no,,20.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,,2,"['Oct', 'Nov']","['reduce_meals', 'lab_ex_food']",-19.1114983,33.47606917,707.0,66.0,uuid:06d21f6d-62ab-484d-80a6-a5ef3e67043a +161,Moz,24/06/2017,28,2017-06-24T16:30:56.000Z,2017-06-24T17:47:34.000Z,Sofala,Nhamatanda,Lamego,Nhansato,45,no,4,4,no,40,no,no,no,no,grass,sunbricks,earth,no,2,2,no,2,2,yes,,2.0,no,,20.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,no,no,,2,['none'],"['reduce_meals', 'day_night_hungry', 'seek_government']",-19.11219076,33.48338349,704.0,9.0,uuid:c5f16ba4-bb4f-4878-9e10-e76803df9cd5 +162,Moz,25/06/2017,29,2017-06-25T06:39:20.000Z,2017-06-25T07:09:00.000Z,Sofala,Nhamatanda,Lamego,Nhansato,50,no,6,6,no,45,no,no,no,no,grass,sunbricks,earth,no,2,2,yes,2,2,yes,,2.0,no,,2.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,no,no,,3,"['Aug', 'Sept', 'Oct']","['limit_portion', 'reduce_meals', 'lab_ex_food']",-19.11203235,33.48332918,768.0,15.0,uuid:58b0e9c3-6fff-4f22-9ff0-670911e2d97c +163,Moz,25/06/2017,30,2017-06-25T07:09:03.000Z,2017-06-25T07:28:19.000Z,Sofala,Nhamatanda,Lamego,Nhansato,10,no,8,8,no,10,no,no,no,no,grass,sunbricks,earth,no,3,2,no,2,2,yes,,2.0,yes,"['Sept', 'Oct', 'Nov']",10.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,no,no,['bicycle'],2,"['Sept', 'Oct', 'Nov']","['reduce_meals', 'lab_ex_food']",-19.1121875,33.4834042,712.0,8.0,uuid:102746ea-822f-4d36-972b-b9054522b35e +164,Moz,25/06/2017,31,2017-06-25T07:29:15.000Z,2017-06-25T07:46:38.000Z,Sofala,Nhamatanda,Lamego,Nhansato,31,no,8,8,no,1,no,no,no,no,grass,sunbricks,earth,no,1,1,yes,1,1,yes,,1.0,no,,1.0,yes,no,,no,,no,never,no,,,yes,no,['poultry'],,1,yes,no,['bicycle'],3,"['Aug', 'Sept', 'Oct']","['rely_less_food', 'limit_portion', 'reduce_meals']",-19.11230668,33.48348781,698.0,9.0,uuid:68f7f590-c5d6-460a-a3fa-0715eed8412c +165,Moz,25/06/2017,32,2017-06-25T07:46:55.000Z,2017-06-25T08:08:01.000Z,Sofala,Nhamatanda,Lamego,Nhansato,46,no,7,7,no,46,no,no,no,no,grass,sunbricks,earth,no,4,1,no,2,2,yes,,2.0,no,,46.0,yes,no,,no,,no,never,no,,,yes,no,"['pigs', 'poultry']",,2,no,no,['bicycle'],3,['Jan'],"['rely_less_food', 'limit_portion', 'reduce_meals']",-19.11216152,33.48332066,719.0,11.0,uuid:4cab3d08-26cf-4b90-8fdb-78b0f8b9f250 +166,Moz,25/06/2017,33,2017-06-25T08:28:37.000Z,2017-06-25T08:40:18.000Z,Sofala,Nhamatanda,Lamego,Nhansato,35,no,3,3,no,30,no,no,no,no,grass,sunbricks,earth,no,2,1,no,2,2,yes,,2.0,no,,35.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,no,no,,3,['none'],"['limit_variety', 'limit_portion', 'lab_ex_food']",-19.11221439,33.48344455,689.0,7.0,uuid:b9007988-8d49-444f-946f-f889a3ef4bd9 +167,Moz,25/06/2017,34,2017-06-25T08:40:21.000Z,2017-06-25T08:53:50.000Z,Sofala,Nhamatanda,Lamego,Nhansato,30,no,4,4,no,40,no,no,no,no,grass,sunbricks,earth,no,3,2,no,1,1,yes,,1.0,no,,30.0,yes,no,,no,,no,never,no,,,yes,yes,['none'],,1,no,no,['bicycle'],3,"['Aug', 'Sept', 'Oct']","['reduce_meals', 'lab_ex_food']",-19.11204515,33.4832909,809.0,11.0,uuid:f97ce99d-69d3-476a-804f-f53f23c69c8a +168,Moz,25/06/2017,35,2017-06-25T08:54:26.000Z,2017-06-25T09:39:18.000Z,Sofala,Nhamatanda,Lamego,Nhansato,5,no,5,5,yes,5,no,no,no,no,grass,sunbricks,earth,no,2,2,yes,2,2,yes,,2.0,no,,5.0,yes,no,,no,,no,never,no,,,yes,yes,"['pigs', 'poultry']",,2,no,no,"['bicycle', 'solar_panel', 'table', 'mobile_phone']",3,"['Jan', 'Feb']","['limit_variety', 'reduce_meals']",-19.11227976,33.48338034,718.0,10.0,uuid:a5ebfca2-2c3f-4288-9fb7-d0b02096e714 +169,Moz,25/06/2017,36,2017-06-25T13:09:17.000Z,2017-06-25T13:31:12.000Z,Sofala,Nhamatanda,Tica,Nhansato,10,no,1,1,no,36,yes,yes,yes,yes,grass,sunbricks,earth,no,1,1,no,1,1,yes,,1.0,no,,10.0,yes,no,,no,,no,never,no,,,yes,no,['none'],,1,no,no,,3,"['Jan', 'Dec']","['limit_portion', 'reduce_meals']",-19.11220854,33.48338486,698.0,7.0,uuid:ec19828c-e352-4c18-b661-b11d44f21d4e +170,Moz,25/06/2017,37,2017-06-25T13:38:58.000Z,2017-06-25T13:55:54.000Z,Sofala,Nhamatanda,Lamego,Nhansato,6,no,6,6,no,6,no,no,no,no,grass,sunbricks,earth,no,3,2,no,3,3,yes,,3.0,no,,6.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,no,no,['bicycle'],3,"['Sept', 'Oct', 'Nov']","['limit_portion', 'reduce_meals', 'lab_ex_food']",-19.11212614,33.48333008,708.0,10.0,uuid:b47f8116-439b-4318-9f50-a398a1d6d480 +171,Moz,25/06/2017,38,2017-06-25T13:57:19.000Z,2017-06-25T14:30:50.000Z,Sofala,Nhamatanda,Lamego,Nhansato,10,no,9,9,no,8,yes,no,yes,no,grass,sunbricks,earth,no,2,1,no,2,2,yes,,2.0,no,,3.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,"['radio', 'solar_torch', 'mobile_phone']",3,"['Jan', 'Feb']","['rely_less_food', 'reduce_meals', 'go_forest', 'lab_ex_food']",-19.11221763,33.48336608,703.0,43.0,uuid:ff3ec25c-b3bd-47d8-95ee-b6d7a2b22a40 +172,Moz,25/06/2017,39,2017-06-25T14:31:12.000Z,2017-06-25T15:01:07.000Z,Sofala,Nhamatanda,Lamego,Nhansato,23,no,9,9,no,24,yes,no,yes,no,grass,sunbricks,earth,no,2,1,no,3,3,yes,,3.0,no,,5.0,yes,no,,no,,no,never,no,,,yes,no,"['goats', 'pigs']",,2,yes,yes,"['bicycle', 'radio', 'solar_panel', 'solar_torch']",3,"['Jan', 'Feb', 'Nov', 'Dec']","['rely_less_food', 'go_forest']",-19.11222159,33.48342054,709.0,5.0,uuid:5e162232-71f3-4a33-95d0-329c5ed88f30 +173,Moz,25/06/2017,40,2017-06-25T15:01:19.000Z,2017-06-25T15:18:31.000Z,Sofala,Nhamatanda,Lamego,Nhansato,25,no,10,10,no,10,no,yes,no,yes,grass,muddaub,earth,no,2,1,no,2,2,yes,,2.0,no,,7.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,"['bicycle', 'radio', 'tractor', 'solar_panel', 'mobile_phone']",3,"['Jan', 'Oct', 'Nov', 'Dec']","['reduce_meals', 'lab_ex_food']",-19.11220082,33.48341163,709.0,9.0,uuid:0f1bde99-7e0f-4d67-98fa-1f6a90ee03a6 +174,Moz,26/06/2017,41,2017-06-26T05:34:45.000Z,2017-06-26T05:52:38.000Z,Sofala,Nhamatanda,Lamego,Nhansato,30,no,3,3,yes,3,no,no,no,no,grass,sunbricks,earth,no,1,2,no,2,2,yes,,2.0,no,,7.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,"['bicycle', 'radio', 'mobile_phone']",2,"['Jan', 'Feb']","['rely_less_food', 'limit_portion', 'reduce_meals', 'lab_ex_food']",-19.11213629,33.48334281,718.0,9.0,uuid:62059296-cf7a-463b-a8a0-e37e8a980b09 +175,Moz,26/06/2017,42,2017-06-26T05:53:11.000Z,2017-06-26T06:14:06.000Z,Sofala,Nhamatanda,Lamego,Nhansato,41,no,7,7,no,41,no,no,no,no,grass,muddaub,earth,yes,1,2,no,3,3,yes,,3.0,yes,"['June', 'July', 'Aug', 'Sept', 'Oct']",41.0,yes,no,,no,,no,never,no,,,no,no,"['pigs', 'poultry']",,2,yes,no,"['bicycle', 'solar_panel', 'mobile_phone']",2,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'reduce_meals', 'borrow_food', 'seek_government']",-19.11214616,33.48331151,711.0,6.0,uuid:8dc14381-f7e4-4ce7-8b2b-c7159cd005ed +176,Moz,26/06/2017,43,2017-06-26T06:14:11.000Z,2017-06-26T06:30:39.000Z,Sofala,Nhamatanda,Lamego,Nhansato,35,no,4,4,no,45,no,no,no,no,grass,muddaub,earth,no,1,1,no,3,3,yes,,3.0,yes,"['July', 'Aug', 'Sept', 'Oct']",30.0,yes,no,,no,,no,never,no,,,no,no,"['goats', 'poultry']",,2,yes,no,['mobile_phone'],2,"['Jan', 'Feb']","['rely_less_food', 'limit_variety', 'reduce_meals', 'borrow_food', 'go_forest', 'lab_ex_food', 'seek_government']",-19.11223376,33.48340679,699.0,8.0,uuid:71fb6807-fe27-4920-9bae-41d883c48cf9 +177,Moz,26/06/2017,44,2017-06-26T06:37:19.000Z,2017-06-26T06:52:48.000Z,Sofala,Nhamatanda,Lamego,Nhansato,50,no,6,6,no,50,no,no,no,no,grass,muddaub,earth,no,2,2,no,2,2,yes,,2.0,yes,"['May', 'June', 'July', 'Aug', 'Sept', 'Oct']",32.0,yes,no,,no,,no,never,no,,,no,no,"['goats', 'pigs', 'poultry']",,3,yes,no,,2,"['Jan', 'Feb', 'Mar', 'Apr', 'Dec']","['rely_less_food', 'reduce_meals', 'borrow_food', 'go_forest', 'seek_government']",-19.11204336,33.48324378,735.0,6.0,uuid:ee3561a8-2a79-4c2d-b7da-84f34e007002 +178,Moz,26/06/2017,45,2017-06-26T06:53:31.000Z,2017-06-26T07:08:35.000Z,Sofala,Nhamatanda,Lamego,Nhansato,50,no,3,3,no,50,no,no,no,no,grass,muddaub,earth,no,1,2,no,3,3,yes,,3.0,yes,"['June', 'July', 'Aug', 'Sept', 'Oct', 'Nov', 'Dec']",50.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,no,no,"['solar_panel', 'solar_torch', 'mobile_phone']",3,"['Jan', 'Feb', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'borrow_food', 'seek_government']",-19.11219614,33.4834441,722.0,7.0,uuid:f376b8a8-80cd-4ab8-a3ad-641bfeaa0d50 +179,Moz,26/06/2017,46,2017-06-26T07:08:49.000Z,2017-06-26T07:22:05.000Z,Sofala,Nhamatanda,Lamego,Nhansato,38,no,1,1,no,38,no,no,no,no,grass,muddaub,earth,no,1,2,no,2,2,yes,,2.0,yes,"['May', 'June', 'July', 'Aug', 'Sept', 'Oct']",3.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,no,no,,3,"['Jan', 'Feb', 'Dec']","['limit_portion', 'borrow_food', 'go_forest', 'seek_government']",-19.11232025,33.48343542,678.0,9.0,uuid:7520ec70-9270-4504-b593-5375a480bacf +180,Moz,26/06/2017,47,2017-06-26T07:23:18.000Z,2017-06-26T07:39:57.000Z,Sofala,Nhamatanda,Lamego,Nhansato -Castanheira,10,no,10,10,no,10,yes,no,no,no,grass,muddaub,earth,no,4,2,yes,2,2,yes,,2.0,yes,"['Aug', 'Sept', 'Oct']",2.0,yes,yes,['cheaper'],no,,no,never,no,,,no,yes,['none'],,1,yes,no,"['bicycle', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",3,"['Jan', 'Sept', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'limit_portion']",-19.1035586,33.4778296,0.0,2124.0,uuid:dadf7328-e428-4d1b-8161-20bc9c8a5ac7 +181,Moz,26/06/2017,48,2017-06-26T08:51:17.000Z,2017-06-26T09:07:47.000Z,Sofala,Nhamatanda,Lamego,Nhansato-Castanheira,37,no,9,9,no,37,yes,yes,no,no,grass,muddaub,earth,no,1,1,no,3,3,yes,,3.0,no,,2.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,"['bicycle', 'radio', 'table']",3,"['Jan', 'Feb', 'Sept', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'day_night_hungry', 'lab_ex_food']",-19.11218834,33.4833486,708.0,11.0,uuid:15978a1d-9275-4af7-af0a-95e85ab9766d +182,Moz,26/06/2017,49,2017-06-26T09:08:35.000Z,2017-06-26T09:22:34.000Z,Sofala,Nhamatanda,Lamego,Nhansato-Castanheira,21,yes,8,8,yes,21,no,no,no,no,grass,sunbricks,earth,no,2,2,no,2,2,yes,,2.0,no,,2.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,yes,no,"['bicycle', 'radio', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",3,"['Jan', 'Feb', 'Sept', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'borrow_food']",-19.11218347,33.48337383,725.0,9.0,uuid:dc8a263a-cddd-4292-bb81-c32991993de2 +183,Moz,26/06/2017,50,2017-06-26T09:22:55.000Z,2017-06-26T09:38:45.000Z,Sofala,Nhamatanda,Lamego,Nhansato-Castanheira,24,yes,9,9,yes,40,no,no,no,no,mabatisloping,burntbricks,cement,no,1,2,no,2,2,yes,,2.0,no,,4.0,yes,no,,no,,no,never,no,,,yes,yes,['none'],,1,yes,no,"['bicycle', 'radio', 'solar_torch', 'table', 'mobile_phone']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'borrow_food', 'lab_ex_food']",-19.11219658,33.48342006,720.0,7.0,uuid:6b65122d-291b-4c0b-80de-3106ae1448cf +184,Moz,27/06/2017,51,2017-06-27T08:13:58.000Z,2017-06-27T17:02:23.000Z,Sofala,51,Lamego,Massequece,5,yes,5,5,no,9,yes,yes,yes,yes,mabatisloping,sunbricks,earth,no,1,2,no,2,2,yes,,2.0,no,,3.0,yes,no,,yes,no,yes,never,no,,,yes,yes,['none'],,1,yes,no,"['bicycle', 'radio']",2,"['Sept', 'Oct', 'Nov', 'Dec']","['reduce_meals', 'lab_ex_food']",-19.11134046,33.47604298,717.0,23.0,uuid:57130433-3503-4353-8016-95370469e57b +185,Moz,27/06/2017,52,2017-06-27T08:41:23.000Z,2017-06-27T09:05:40.000Z,Sofala,Nhamatanda,Lamego,Massequece,11,no,9,9,no,34,no,no,no,no,grass,sunbricks,earth,no,2,1,no,3,3,yes,,3.0,yes,"['Aug', 'Sept']",10.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,no,no,"['bicycle', 'solar_panel', 'mobile_phone']",2,"['Jan', 'Aug', 'Sept', 'Oct', 'Nov', 'Dec']","['reduce_meals', 'restrict_adults']",-19.11153271,33.47620975,712.0,29.0,uuid:4a9fd7e8-fb7f-4b7e-9718-f6e59059509a +186,Moz,27/06/2017,53,2017-06-27T09:06:35.000Z,2017-06-27T09:33:44.000Z,Sofala,Nhamatanda,Lamego,Massequece,10,no,6,6,no,17,no,yes,no,yes,grass,sunbricks,earth,no,2,3,no,2,2,yes,,2.0,no,,3.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,"['radio', 'solar_panel']",3,"['Sept', 'Oct', 'Nov']","['rely_less_food', 'limit_portion', 'lab_ex_food']",-19.11152561,33.47614903,722.0,42.0,uuid:8adb7af9-3216-43bc-892f-325f4473732a +187,Moz,27/06/2017,58,2017-06-27T13:02:39.000Z,2017-06-27T13:23:12.000Z,Sofala,Nhamatanda,Lamego,Massequece,18,no,9,9,no,18,yes,yes,yes,yes,grass,sunbricks,earth,no,1,1,no,2,2,yes,,2.0,no,,18.0,yes,no,,yes,no,no,never,no,,,no,yes,['none'],,1,yes,no,,2,['Jan'],"['rely_less_food', 'limit_portion', 'borrow_food', 'go_forest', 'seek_government']",-19.1115207,33.4760514,0.0,20.0,uuid:846846c3-2eac-4412-81c1-52bc3c225ab0 +188,Moz,27/06/2017,59,2017-06-27T13:28:33.000Z,2017-06-27T13:50:51.000Z,Sofala,Nhamatanda,Lamego,Massequece,15,no,11,11,no,14,no,no,no,no,mabatisloping,burntbricks,earth,no,3,2,yes,1,1,no,1.0,,,,,,,,,,,,,,,yes,no,['none'],,1,no,no,"['bicycle', 'television', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",2,"['Jan', 'Feb', 'Oct', 'Nov', 'Dec']",['rely_less_food'],-19.1115207,33.4760514,0.0,20.0,uuid:ba051d36-fcc3-469c-b8f3-a2938272d8ba +189,Moz,27/06/2017,60,2017-06-27T13:54:05.000Z,2017-06-27T14:07:31.000Z,Sofala,Nhamatanda,Lamego,Massequece,30,no,3,3,yes,20,no,no,no,no,mabatisloping,burntbricks,earth,no,2,1,no,4,4,yes,,4.0,no,,20.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,yes,no,['bicycle'],3,"['Jan', 'Feb', 'Nov', 'Dec']","['rely_less_food', 'lab_ex_food']",-19.1115207,33.4760514,0.0,20.0,uuid:4e945d34-f420-4b0b-bd81-97b397da29a9 +190,Moz,27/06/2017,54,2017-06-27T15:39:19.000Z,2017-06-27T15:55:57.000Z,Sofala,Nhamatanda,Lamego,Massequece,22,no,4,4,no,22,no,no,no,no,grass,sunbricks,earth,no,2,1,no,2,2,yes,,2.0,no,,22.0,yes,no,,no,,no,never,no,,,no,no,['poultry'],,1,yes,no,,2,"['Jan', 'Dec']","['rely_less_food', 'borrow_food']",-19.11214136,33.48343551,701.0,4.0,uuid:6491aacb-c3b7-472f-b00f-1a905c173a2c +191,Moz,27/06/2017,55,2017-06-27T15:56:26.000Z,2017-06-27T16:14:52.000Z,Sofala,Nhamatanda,Lamego,Massequese,42,yes,4,4,yes,45,no,yes,no,yes,grass,sunbricks,earth,no,2,2,no,3,3,yes,,3.0,no,,42.0,yes,no,,no,,no,never,no,,,yes,no,['none'],,1,yes,no,"['bicycle', 'radio']",3,['none'],['na'],-19.11223034,33.48340883,697.0,16.0,uuid:7e3e956f-c59f-4e7e-be35-cba5d80a76a0 +192,Moz,27/06/2017,56,2017-06-27T16:15:37.000Z,2017-06-27T16:39:42.000Z,Sofala,Nhamatanda,Lamego,Massequece,57,yes,5,5,yes,16,no,no,no,no,mabatisloping,burntbricks,cement,no,1,3,no,3,3,yes,,3.0,no,,10.0,yes,no,,yes,no,yes,never,no,,,yes,no,['none'],,1,yes,no,"['bicycle', 'solar_torch', 'table', 'mobile_phone']",3,"['Oct', 'Nov', 'Dec']","['rely_less_food', 'lab_ex_food']",-19.11221906,33.4833719,730.0,10.0,uuid:45f70b5c-89c8-4f98-a43e-66125e2f290d +193,Moz,27/06/2017,57,2017-06-27T16:40:01.000Z,2017-06-27T16:57:22.000Z,Sofala,Nhamatanda,Lamego,Massequece,17,no,6,6,no,17,no,no,no,no,grass,sunbricks,earth,no,2,1,no,2,2,no,2.0,,,,,,,,,,,,,,,no,no,['none'],,1,yes,no,,2,"['Jan', 'Nov', 'Dec']","['borrow_food', 'lab_ex_food']",-19.11223961,33.48326329,708.0,24.0,uuid:9c3021f6-c520-45f9-afed-e4508b9a758a +194,Moz,28/06/2017,61,2017-06-28T04:14:11.000Z,2017-06-28T04:29:48.000Z,Sofala,Nhamatanda,Lamego,Massequece,6,yes,8,8,no,6,yes,yes,yes,yes,mabatisloping,burntbricks,cement,yes,4,1,yes,2,2,yes,,2.0,no,,3.0,yes,no,,yes,no,yes,never,no,,,no,no,"['pigs', 'poultry']",,2,yes,no,"['bicycle', 'radio', 'solar_torch', 'table', 'mobile_phone']",3,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'limit_portion']",-19.112245,33.48324839,711.0,7.0,uuid:4535b659-4a1b-4ffc-bdf0-14115e93090b +195,Moz,28/06/2017,62,2017-06-28T04:29:54.000Z,2017-06-28T04:44:02.000Z,Sofala,Nhamatanda,Lamego,Massequece,10,no,6,6,no,23,no,no,no,no,grass,sunbricks,earth,no,1,3,no,3,3,yes,,3.0,yes,"['May', 'June', 'July', 'Aug', 'Sept', 'Oct']",25.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,no,no,['table'],3,"['Jan', 'Feb', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'go_forest']",-19.11194214,33.48341973,713.0,11.0,uuid:e6eaf4a6-610c-4f9c-90f1-0ea90ca73513 +196,Moz,28/06/2017,63,2017-06-28T05:55:53.000Z,2017-06-28T06:18:47.000Z,Sofala,Nhamatanda,Lamego,Massequece,15,no,5,5,no,15,no,no,no,no,grass,muddaub,earth,no,2,2,no,3,3,yes,,3.0,yes,"['July', 'Aug', 'Sept', 'Oct', 'Nov', 'Dec']",5.0,yes,no,,no,,no,never,no,,,no,yes,['poultry'],,1,no,no,"['bicycle', 'radio', 'solar_panel', 'solar_torch', 'mobile_phone']",3,"['Jan', 'Feb', 'Mar']","['rely_less_food', 'limit_variety', 'reduce_meals', 'borrow_food', 'go_forest', 'lab_ex_food', 'seek_government']",-19.06138693,33.39081845,698.0,10.0,uuid:1541f85b-7219-4401-8efd-7e984b5c2b99 +197,Moz,28/06/2017,64,2017-06-28T07:02:34.000Z,2017-06-28T07:16:52.000Z,Sofala,Nhamatanda,Lamego,Massequece,15,no,4,4,no,15,yes,yes,yes,yes,grass,muddaub,earth,no,1,1,no,4,4,yes,,4.0,yes,"['June', 'July', 'Aug', 'Sept']",5.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,no,no,,2,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'lab_ex_food']",-19.04336707,33.40438933,715.0,52.0,uuid:1e4b10f6-57d0-4309-aa0d-b22135ddde18 +198,Moz,28/06/2017,65,2017-06-28T07:19:02.000Z,2017-06-28T07:31:20.000Z,Sofala,Nhamatanda,Lamego,Massequece,25,no,3,3,no,50,no,no,no,no,grass,muddaub,earth,no,1,1,no,2,2,yes,,2.0,yes,"['June', 'July', 'Aug', 'Sept', 'Oct']",20.0,yes,no,,no,,no,never,no,,,no,no,"['goats', 'pigs', 'poultry']",,3,no,no,"['bicycle', 'solar_panel', 'mobile_phone']",2,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'go_forest', 'lab_ex_food']",-19.04260643,33.40413019,767.0,55.0,uuid:596816b5-a163-4d1e-9ba4-d0a27944d4c8 +199,Moz,28/06/2017,66,2017-06-28T10:53:22.000Z,2017-06-28T11:20:37.000Z,Sofala,Nhamatanda,Lamego,Massequece,45,yes,3,3,yes,45,no,no,no,no,mabatisloping,burntbricks,earth,yes,1,1,yes,4,4,yes,,4.0,no,,3.0,yes,no,,yes,yes,yes,never,yes,['support'],,yes,no,"['goats', 'pigs']",,2,yes,no,"['bicycle', 'radio', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",3,['none'],['na'],-19.1014914,33.427975,628.0,4.0,uuid:27d46183-f616-4933-a5dc-4d3171bc1767 +200,Moz,28/06/2017,67,2017-06-28T13:55:22.000Z,2017-06-28T14:09:46.000Z,Sofala,Nhamatanda,Lamego,Massequece,10,no,6,6,yes,30,no,no,no,no,grass,muddaub,earth,no,1,1,no,3,3,yes,,3.0,no,,3.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,"['bicycle', 'radio', 'mobile_phone']",3,"['Jan', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'borrow_food', 'lab_ex_food']",-19.1115207,33.4760514,0.0,20.0,uuid:62829412-1df0-4858-99f9-ae88b6aedfc3 +201,Moz,28/06/2017,68,2017-06-28T14:11:03.000Z,2017-06-28T14:25:01.000Z,Sofala,Nhamatanda,Lamego,Massequece,18,yes,3,3,no,19,yes,no,no,no,grass,sunbricks,earth,no,1,1,yes,2,2,yes,,2.0,no,,12.0,yes,yes,"['cheaper', 'obtn_more_water', 'less_work']",yes,no,yes,never,yes,['support'],,yes,no,['none'],,1,yes,no,"['bicycle', 'radio', 'solar_panel', 'solar_torch', 'mobile_phone']",3,['none'],['na'],-19.1115207,33.4760514,0.0,20.0,uuid:461cf089-a400-4407-9c1b-1b93762fba39 +202,Moz,28/06/2017,69,2017-06-28T14:29:43.000Z,2017-06-28T14:45:10.000Z,Sofala,Nhamatanda,Lamego,Lamego,19,no,2,2,no,19,no,no,no,no,grass,muddaub,earth,no,1,1,yes,2,2,yes,,2.0,no,,19.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,no,no,['radio'],3,"['Jan', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'lab_ex_food']",-19.1115242,33.4760439,0.0,21.473,uuid:85359846-2b98-413b-9671-6501980fa4f1 +203,Moz,28/06/2017,6,2017-06-28T14:54:17.000Z,2017-06-28T15:11:10.000Z,Sofala,Nhamatanda,Lamego,Massequece,3,yes,6,6,yes,18,no,no,no,no,grass,sunbricks,earth,no,1,1,yes,2,2,yes,,2.0,no,,3.0,yes,no,,no,,no,never,no,,,yes,yes,['none'],,1,no,no,['table'],3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'lab_ex_food']",-19.1115207,33.4760514,0.0,20.9,uuid:8c1ca96b-8154-4cf4-8b77-e78efc724f2c +204,Moz,29/06/2017,71,2017-06-29T03:51:01.000Z,2017-06-29T04:01:27.000Z,Sofala,Nhamatanda,Lamego,Massequece,13,no,4,4,no,13,yes,yes,no,no,grass,muddaub,earth,no,1,1,no,2,2,yes,,2.0,no,,3.0,yes,no,,no,,no,never,no,,,no,yes,"['goats', 'poultry']",,2,yes,no,['bicycle'],3,"['Jan', 'Feb', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'borrow_food', 'no_food', 'day_night_hungry', 'lab_ex_food']",-19.11173102,33.48353913,741.0,10.0,uuid:4402581d-0b04-441d-95f2-d6978b65b610 +205,Moz,29/06/2017,72,2017-06-29T04:02:00.000Z,2017-06-29T04:42:38.000Z,Sofala,Nhamatanda,Lamego,Massequece,30,no,7,7,yes,30,no,no,no,no,grass,muddaub,earth,no,1,2,no,4,4,yes,,4.0,no,,20.0,yes,no,,no,,no,never,no,,,no,no,['goats'],,1,yes,no,"['bicycle', 'solar_torch']",3,"['Jan', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals']",-19.11197377,33.48346522,726.0,23.0,uuid:495eb0f0-d931-4fc4-bc5c-f37e1aee3f74 +206,Moz,29/06/2017,73,2017-06-29T13:27:31.000Z,2017-06-29T13:46:02.000Z,Sofala,Nhamatanda,Lamego,Massequece,20,no,7,7,no,20,no,yes,no,no,grass,sunbricks,earth,no,2,1,no,2,2,yes,,2.0,no,,1.0,yes,no,,no,,no,never,no,,,no,yes,"['pigs', 'poultry']",,2,no,no,"['bicycle', 'table', 'mobile_phone']",3,"['Jan', 'Feb']","['rely_less_food', 'limit_variety', 'reduce_meals', 'lab_ex_food']",-19.11132209,33.47602087,745.0,49.0,uuid:7018c11e-946c-4e93-8c45-5f9ba741dabf +207,Moz,29/06/2017,74,2017-06-29T13:46:16.000Z,2017-06-29T14:11:57.000Z,Sofala,Nhamatanda,Lamego,Massequece,13,no,5,5,no,13,yes,yes,yes,no,grass,muddaub,earth,no,2,1,no,2,2,yes,,2.0,no,,13.0,yes,no,,no,,no,never,no,,,no,no,"['pigs', 'poultry']",,2,no,no,"['bicycle', 'radio', 'mobile_phone']",3,"['Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals']",-19.11156919,33.4762273,805.0,30.0,uuid:79d40e59-3cf8-4980-abc7-a508b6308f68 +208,Moz,29/06/2017,75,2017-06-29T14:13:31.000Z,2017-06-29T14:23:10.000Z,Sofala,Nhamatanda,Lamego,Massequece,4,no,4,4,no,4,no,yes,no,no,mabatisloping,sunbricks,earth,no,2,2,no,1,1,no,1.0,,,,,,,,,,,,,,,no,no,['poultry'],,1,yes,no,"['bicycle', 'electricity', 'table']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'borrow_food']",-19.1114463,33.4759556,0.0,72.9,uuid:775f4335-4372-4943-9f28-5c9c3614eea1 +209,Moz,29/06/2017,76,2017-06-29T16:40:25.000Z,2017-06-29T16:50:28.000Z,Sofala,Nhamatanda,Lamego,Massequece,28,no,4,4,no,28,no,no,no,no,mabatisloping,burntbricks,cement,yes,1,2,no,2,2,yes,,2.0,no,,13.0,no,no,,no,,no,never,no,,,no,no,"['goats', 'pigs', 'poultry']",,3,no,no,"['bicycle', 'television', 'radio', 'electricity', 'table']",3,"['Jan', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals']",-19.11225279,33.48349952,698.0,33.0,uuid:fbebd4ea-8b68-4e7a-ac58-b8af66d2d386 +210,Moz,29/06/2017,77,2017-06-29T16:51:51.000Z,2017-06-29T17:06:35.000Z,Sofala,Nhamatanda,Lamego,Massequece,14,no,3,3,no,14,no,yes,no,no,grass,muddaub,earth,no,1,1,no,2,2,yes,,2.0,no,,4.0,yes,yes,['previous_unavailable'],no,,no,never,no,,,no,no,['goats'],,1,yes,no,"['radio', 'solar_torch', 'table']",3,['none'],"['rely_less_food', 'limit_variety', 'reduce_meals']",-19.11218703,33.4834991,725.0,7.0,uuid:4721d9e5-00ff-47bf-8321-a457a85bdbe0 +211,Moz,29/06/2017,78,2017-06-29T17:06:38.000Z,2017-06-29T17:18:47.000Z,Sofala,Nhamatanda,Lamego,Massequece,12,no,6,6,no,12,yes,yes,yes,yes,mabatisloping,burntbricks,cement,no,1,2,no,2,2,yes,,2.0,no,,2.0,yes,no,,no,,no,never,no,,,yes,no,"['goats', 'pigs']",,2,yes,no,"['bicycle', 'radio', 'solar_panel', 'solar_torch', 'electricity', 'table', 'mobile_phone']",3,"['Jan', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals']",-19.11217481,33.48347033,706.0,5.0,uuid:b5200aab-a013-4c9b-9d87-90bcfe3c9d58 +212,Moz,29/06/2017,79,2017-06-29T17:19:21.000Z,2017-06-29T17:34:24.000Z,Sofala,Nhamatanda,Lamego,Massequece,15,yes,5,5,no,20,yes,yes,no,no,mabatisloping,cement,cement,yes,1,1,no,3,3,yes,,3.0,no,,6.0,yes,no,,yes,no,yes,never,no,,,no,no,['goats'],,1,yes,no,"['bicycle', 'television', 'radio', 'sterio', 'solar_panel', 'electricity', 'table', 'sofa_set', 'mobile_phone']",3,"['Jan', 'Feb', 'Mar']","['rely_less_food', 'limit_variety']",-19.11211864,33.48337579,716.0,14.0,uuid:997e97ae-ca9a-431d-8222-79da30c93b4b +213,Moz,29/06/2017,80,2017-06-29T17:34:36.000Z,2017-06-29T17:45:39.000Z,Sofala,Nhamantanda,Lamego,Massequece,5,no,2,2,no,22,yes,yes,yes,yes,grass,muddaub,earth,no,1,1,no,2,2,yes,,2.0,yes,"['June', 'July', 'Aug', 'Sept', 'Oct']",2.0,yes,no,,yes,no,no,never,no,,,no,no,['none'],,1,no,no,"['table', 'mobile_phone']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'borrow_food', 'lab_ex_food']",-19.11216772,33.48345188,692.0,10.0,uuid:a67bc75f-c70e-490e-9bae-5454e7bad76f +214,Moz,30/06/2017,81,2017-06-30T05:32:47.000Z,2017-06-30T05:50:23.000Z,Sofala,Nhamatanda,Lamego,Nhansato,20,no,9,9,no,25,yes,yes,yes,yes,grass,muddaub,earth,no,1,1,no,2,2,yes,,2.0,yes,"['June', 'July', 'Aug', 'Sept', 'Oct']",12.0,yes,no,,no,,no,never,no,,,no,yes,['poultry'],,1,no,no,"['bicycle', 'radio', 'solar_torch', 'mobile_phone']",2,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'restrict_adults', 'borrow_food']",-19.04362725,33.40450004,674.0,9.0,uuid:65064927-d9ad-4a31-b95c-8e38d0c5d599 +215,Moz,30/06/2017,83,2017-06-30T13:10:52.000Z,2017-06-30T13:23:29.000Z,Sofala,Nhamatanda,Lamego,Massequece,19,no,3,3,no,12,yes,yes,no,no,grass,muddaub,earth,no,1,1,no,2,2,no,2.0,,,,,,,,,,,,,,,no,no,['none'],,1,yes,no,,3,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'day_night_hungry', 'go_forest']",-19.11159001,33.47559586,735.0,139.0,uuid:bc5bd0b1-83a6-4d91-b04c-5e48d19bffc8 +216,Moz,30/06/2017,84,2017-06-30T13:25:24.000Z,2017-06-30T13:36:57.000Z,Sofala,Nhamatanda,Lamego,Massequece,6,no,6,6,no,15,yes,yes,yes,yes,grass,muddaub,earth,no,1,1,no,2,2,yes,,2.0,yes,"['June', 'July', 'Aug', 'Sept', 'Oct']",10.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,['solar_torch'],2,"['Jan', 'Feb', 'Mar', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'restrict_adults', 'borrow_food', 'lab_ex_food', 'seek_government']",-19.1115207,33.4760514,0.0,20.0,uuid:887b0ef4-ccfc-40d2-b807-71d3218627ce +217,Moz,30/06/2017,82,2017-06-30T12:53:02.000Z,2017-06-30T13:04:36.000Z,Sofala,Nhamatanda,Lamego,Massequece,30,no,6,6,no,10,yes,yes,no,no,grass,muddaub,earth,no,1,1,no,2,2,no,2.0,,,,,,,,,,,,,,,no,no,['none'],,1,no,no,"['bicycle', 'radio', 'solar_torch', 'mobile_phone']",2,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_variety', 'restrict_adults', 'lab_ex_food']",-19.11167546,33.47622988,734.0,26.0,uuid:d79aa0e1-d38b-4aee-a8bb-712c7cf79877 +218,Moz,30/06/2017,85,2017-06-30T15:22:08.000Z,2017-06-30T15:42:35.000Z,Sofala,Nhamatanda,Lamego,Massequece,10,no,6,6,no,7,no,no,no,no,grass,muddaub,earth,no,1,1,no,2,2,yes,,2.0,yes,"['June', 'July', 'Aug', 'Sept', 'Oct']",7.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,"['motorcyle', 'television', 'solar_panel', 'sofa_set', 'mobile_phone']",3,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'go_forest', 'lab_ex_food']",-19.11155625,33.45908041,706.0,14.0,uuid:47518791-d202-4ea3-8285-748a6432d6eb +219,Moz,30/06/2017,86,2017-06-30T15:43:34.000Z,2017-06-30T16:13:25.000Z,Sofala,Nhamatanda,Lamego,Massequece,20,no,6,6,no,25,no,no,no,no,grass,muddaub,earth,no,1,1,no,2,2,yes,,2.0,yes,"['May', 'June', 'July', 'Aug', 'Sept', 'Oct']",10.0,yes,no,,no,,no,never,no,,,no,yes,['poultry'],,1,no,no,"['radio', 'mobile_phone']",3,"['Jan', 'Feb', 'Mar', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'restrict_adults', 'borrow_food', 'go_forest', 'lab_ex_food']",-19.1113203,33.45912408,704.0,7.0,uuid:ebe34e84-e09c-4b5d-aa80-ec490289e8cf +220,Moz,30/06/2017,87,2017-06-30T16:14:41.000Z,2017-06-30T16:31:19.000Z,Sofala,Nhamatanda,Lamego,Massequece,25,no,5,5,no,35,yes,no,no,no,grass,muddaub,earth,no,1,1,no,2,2,yes,,2.0,yes,"['June', 'July', 'Aug', 'Sept']",15.0,yes,no,,no,,no,never,no,,,no,no,"['goats', 'pigs', 'poultry']",,3,yes,no,"['bicycle', 'radio', 'mobile_phone']",3,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'limit_variety']",-19.11123552,33.45907741,705.0,11.0,uuid:686b184f-c2fc-4964-ac62-a08465846eac +221,Moz,30/06/2017,88,2017-06-30T16:32:30.000Z,2017-06-30T16:44:09.000Z,Sofala,Nhamatanda,Lamego,Massequece,20,no,4,4,no,30,no,no,no,no,mabatisloping,burntbricks,earth,no,1,1,no,2,2,yes,,2.0,no,,15.0,yes,no,,no,,no,never,no,,,no,yes,['poultry'],,1,no,yes,"['bicycle', 'radio', 'solar_panel', 'mobile_phone']",3,"['Jan', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals']",-19.11132791,33.45916222,702.0,10.0,uuid:93295999-d643-42d0-b96d-0028f98b4952 +222,Moz,30/06/2017,89,2017-06-30T16:44:18.000Z,2017-06-30T17:07:47.000Z,Sofala,Nhamatanda,Lamego,Massequece,20,yes,10,10,no,20,yes,no,yes,no,mabatisloping,burntbricks,cement,yes,2,3,yes,3,3,yes,,3.0,no,,20.0,yes,no,,yes,yes,yes,never,no,,,no,no,['poultry'],,1,yes,no,"['bicycle', 'television', 'radio', 'sterio', 'solar_panel', 'solar_torch', 'electricity', 'table', 'sofa_set', 'mobile_phone']",3,"['Jan', 'Dec']","['rely_less_food', 'borrow_food']",-19.11131064,33.45913834,716.0,22.0,uuid:7eae29c9-e402-4e77-b960-2b5bc09bb5ea +223,Moz,30/06/2017,90,2017-06-30T17:10:24.000Z,2017-06-30T17:22:47.000Z,Sofala,Nhamatanda,Lomego,Massequece,40,no,6,6,yes,40,no,no,no,no,grass,muddaub,earth,no,1,1,no,2,2,no,2.0,,,,,,,,,,,,,,,no,no,['none'],,1,yes,no,['solar_torch'],2,"['Jan', 'Feb', 'Sept', 'Oct', 'Nov', 'Dec']",['go_forest'],-19.11131805,33.45906793,704.0,8.0,uuid:88f0276d-bda9-4ce7-9394-eceba1bbcac5 +224,Moz,01/07/2017,92,2017-07-01T17:19:27.000Z,2017-07-01T17:37:44.000Z,Sofala,Nhamatanda,91,Massequece,45,yes,6,6,yes,70,yes,no,yes,no,mabatisloping,burntbricks,cement,yes,2,2,no,3,3,yes,,3.0,no,,3.0,yes,no,,yes,yes,yes,never,no,,,yes,no,['goats'],,1,yes,no,"['motorcyle', 'radio', 'solar_panel', 'solar_torch', 'table']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'borrow_food']",-19.11227186,33.4834346,690.0,10.0,uuid:09452e0d-22d5-4f45-8698-9249c614bab9 +225,Moz,01/07/2017,92,2017-07-01T17:38:11.000Z,2017-07-01T17:50:39.000Z,Sofala,Nhamatanda,Lamego,Massequece,5,no,4,4,no,5,yes,yes,yes,yes,grass,muddaub,earth,no,1,1,no,2,2,no,2.0,,,,,,,,,,,,,,,no,no,['none'],,1,yes,no,"['bicycle', 'solar_torch']",2,"['Jan', 'Feb', 'Mar', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'reduce_meals', 'go_forest', 'lab_ex_food']",-19.11225355,33.483395,697.0,5.0,uuid:c8fd2fdb-df73-461a-9c2c-38f288c65e1b +226,Moz,01/07/2017,93,2017-07-01T17:51:10.000Z,2017-07-01T18:05:14.000Z,Sofala,Nhamatanda,Lamego,Massequece,16,no,10,10,no,15,yes,yes,yes,yes,grass,sunbricks,earth,no,2,1,no,2,2,no,2.0,,,,,,,,,,,,,,,no,no,['goats'],,1,yes,no,"['bicycle', 'radio', 'sterio', 'solar_torch']",3,"['Jan', 'Feb', 'Dec']","['limit_variety', 'reduce_meals', 'lab_ex_food']",-19.11222287,33.48341093,689.0,13.0,uuid:3dfe8fd8-659b-437d-b235-b25084f99002 +227,Moz,01/07/2017,94,2017-07-01T18:07:22.000Z,2017-07-01T18:20:55.000Z,Sofala,Nhamatanda,Lamego,Massequece,5,no,4,4,no,5,yes,yes,yes,yes,grass,sunbricks,earth,no,1,1,no,2,2,yes,,2.0,no,,5.0,yes,no,,no,,no,never,no,,,no,yes,['pigs'],,1,yes,no,"['computer', 'solar_torch']",2,"['Jan', 'Feb', 'Mar', 'Sept', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'borrow_food', 'lab_ex_food']",-19.11219416,33.48343164,684.0,5.0,uuid:d2452e59-1a21-45da-a184-325828070df1 +228,Moz,02/07/2017,95,2017-07-02T07:23:51.000Z,2017-07-02T07:39:41.000Z,Sofala,Nhamatanda,Lamego,Massequece,20,no,5,5,no,20,yes,no,yes,no,grass,sunbricks,earth,no,1,1,no,2,2,yes,,2.0,no,,20.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,"['bicycle', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",3,"['Jan', 'Dec']","['rely_less_food', 'reduce_meals', 'borrow_food', 'lab_ex_food']",-19.11223405,33.4833483,723.0,11.0,uuid:a10d89ad-8ade-4ab5-9b15-6ed66709074a +229,Moz,02/07/2017,96,2017-07-02T07:44:52.000Z,2017-07-02T07:56:08.000Z,Sofala,Nhamatanda,Lamego,Nhamatanda,4,no,4,4,no,4,no,no,no,no,grass,sunbricks,earth,no,1,1,no,2,2,yes,,2.0,no,,4.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,['radio'],2,"['Jan', 'Feb', 'Mar', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'reduce_meals', 'lab_ex_food']",-19.1122381,33.48342821,713.0,10.0,uuid:8d7261cc-7c9b-4578-9106-88b807f35362 +230,Moz,02/07/2017,97,2017-07-02T07:56:56.000Z,2017-07-02T08:10:50.000Z,Sofala,Nhamatanda,Lamego,Massequece,17,no,6,6,no,17,yes,no,yes,no,grass,muddaub,earth,no,3,1,no,2,2,yes,,2.0,no,,17.0,yes,no,,no,,no,never,no,,,no,yes,['pigs'],,1,yes,no,"['bicycle', 'radio', 'solar_panel', 'solar_torch']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'reduce_meals', 'lab_ex_food']",-19.1121819,33.48340442,714.0,6.0,uuid:0791ec0f-4afd-409c-8972-c8e403001bcf +231,Moz,02/07/2017,98,2017-07-02T08:11:09.000Z,2017-07-02T08:23:57.000Z,Sofala,Nhamatanda,Lamego,Massequece,13,no,3,3,no,10,no,no,no,no,grass,muddaub,earth,no,1,4,no,4,4,yes,,4.0,no,,10.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,"['lorry', 'solar_panel', 'mobile_phone']",3,"['Jan', 'Nov', 'Dec']","['limit_portion', 'lab_ex_food']",-19.11219328,33.48336924,709.0,13.0,uuid:6d23af1e-09b6-4bfa-8b7b-4367113fee51 +232,Moz,02/07/2017,99,2017-07-02T08:24:09.000Z,2017-07-02T08:39:12.000Z,Sofala,Nhamatanda,Lamego,Massequece,25,no,4,4,no,40,yes,yes,yes,yes,mabatisloping,burntbricks,cement,no,3,2,no,3,3,yes,,3.0,no,,25.0,yes,no,,no,,no,never,yes,['farming'],,yes,no,['none'],,1,yes,no,"['bicycle', 'radio', 'table', 'mobile_phone']",3,['none'],['na'],-19.11218694,33.4833861,716.0,11.0,uuid:18c5d990-c1a1-42e2-a4da-ecf940cefdc3 +233,Moz,02/07/2017,100,2017-07-02T08:39:15.000Z,2017-07-02T08:50:55.000Z,Sofala,Nhamatanda,Lamego,Massequece,15,no,3,3,no,37,yes,no,yes,no,grass,sunbricks,earth,no,1,2,no,3,3,no,3.0,,,,,,,,,,,,,,,yes,no,['none'],,1,yes,no,"['bicycle', 'radio', 'mobile_phone']",3,['none'],['na'],-19.11225776,33.48338638,701.0,6.0,uuid:bb10b080-d919-46b8-838b-a3bed2609788 +234,Moz,04/07/2017,101,2017-07-04T05:20:53.000Z,2017-07-04T05:37:16.000Z,Sofala,Nhamatanda,Lamego,Massequece,5,no,8,8,no,40,yes,no,yes,no,mabatisloping,burntbricks,cement,no,2,6,no,4,4,yes,,4.0,yes,"['Aug', 'Sept']",5.0,yes,no,,no,,no,never,no,,,yes,no,['none'],,1,yes,no,"['motorcyle', 'television', 'electricity', 'table', 'sofa_set', 'mobile_phone', 'fridge']",3,['none'],['na'],-14.71751016,34.35387906,1281.0,9.0,uuid:33247b5c-964b-4422-b385-71d1e635b4c9 +235,Moz,04/07/2017,102,2017-07-04T05:39:31.000Z,2017-07-04T05:48:27.000Z,Sofala,Nhamatanda,Lamego,Massequece,1,yes,4,4,no,30,yes,yes,yes,yes,grass,sunbricks,earth,no,2,2,no,2,2,no,2.0,,,,,,,,,,,,,,,no,no,['none'],,1,yes,no,"['radio', 'table']",3,"['Jan', 'Dec']","['rely_less_food', 'reduce_meals', 'borrow_food']",-14.71758448,34.35371339,1273.0,17.0,uuid:0cd22fe9-76d3-467c-b202-0f75d17707c1 +236,Moz,05/07/2017,103,2017-07-05T05:47:50.000Z,2017-07-05T06:07:58.000Z,Sofala,Nhamatanda,Lamego,Massequece,9,yes,4,4,no,27,yes,no,yes,no,mabatisloping,burntbricks,cement,yes,2,2,no,2,2,yes,,2.0,no,,3.0,yes,no,,yes,no,yes,never,no,,,yes,yes,['none'],,1,yes,no,"['bicycle', 'radio', 'electricity', 'mobile_phone', 'fridge']",3,['none'],['na'],-14.71758322,34.35406703,1270.0,16.0,uuid:36b8d9fc-29b8-41c9-bbac-1d6598be651b +237,Moz,05/07/2017,104,2017-07-05T06:34:39.000Z,2017-07-07T06:45:05.000Z,Sofala,Nhamatanda,Lamego,Massequece,3,no,8,8,no,3,no,no,no,no,mabatisloping,sunbricks,earth,no,2,2,no,1,1,no,1.0,,,,,,,,,,,,,,,no,yes,"['goats', 'poultry']",,2,no,no,"['bicycle', 'radio']",2,"['Jan', 'Nov', 'Dec']","['rely_less_food', 'reduce_meals', 'borrow_food']",-14.7218248,34.3585566,0.0,2185.0,uuid:a7547669-7cf8-4982-ab61-b742f71337ac +238,Moz,05/07/2017,105,2017-07-05T11:29:24.000Z,2017-07-05T11:42:08.000Z,Sofala,Nhamatanda,Lamego,Massequece,50,no,4,4,no,50,yes,yes,yes,yes,mabatisloping,sunbricks,earth,no,2,2,no,3,3,yes,,3.0,yes,"['Sept', 'Oct']",15.0,yes,no,,no,,no,never,no,,,yes,no,"['pigs', 'poultry']",,2,no,no,"['bicycle', 'solar_torch', 'table']",2,"['Jan', 'Nov', 'Dec']","['rely_less_food', 'reduce_meals', 'borrow_food']",-14.7214103,34.3582717,0.0,2200.0,uuid:c800d6e8-aaad-4e54-bce3-78b12ee456a9 +239,Moz,06/07/2017,106,2017-07-06T06:30:20.000Z,2017-07-06T07:00:02.000Z,Sofala,Nhamatanda,Lamego,Massequece,20,yes,7,7,no,30,yes,yes,yes,yes,mabatisloping,burntbricks,cement,yes,2,3,no,1,1,yes,,1.0,yes,"['Aug', 'Sept']",20.0,yes,no,,no,,no,never,no,,,no,no,['poultry'],,1,yes,no,"['bicycle', 'table', 'mobile_phone']",3,"['Jan', 'Dec']","['limit_variety', 'reduce_meals']",-14.72334659,34.34416543,1272.0,29.0,uuid:919b4115-86e6-4b12-8a45-0b7d85b52de0 +240,Moz,06/07/2017,107,2017-07-06T07:03:16.000Z,2017-07-06T07:59:31.000Z,Sofala,Nhamatanda,Lamego,Massequece,30,yes,6,6,no,30,no,no,no,no,mabatisloping,burntbricks,cement,yes,2,3,yes,4,4,yes,,4.0,no,,3.0,yes,no,,no,,no,never,no,,,yes,no,"['goats', 'poultry']",,2,yes,no,"['bicycle', 'radio', 'electricity', 'table', 'mobile_phone']",3,"['Jan', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals']",-14.72315773,34.34406807,1290.0,42.0,uuid:b5b9ab62-24c9-4132-aafe-758ffdcc869b +241,Moz,07/07/2017,108,2017-07-07T05:21:40.000Z,2017-07-07T05:39:43.000Z,Sofala,Nhamatanda,Lamego,Massequece,6,no,6,6,no,6,yes,yes,yes,no,mabatisloping,burntbricks,cement,yes,2,1,no,3,3,yes,,3.0,no,,6.0,yes,no,,no,,no,never,no,,,no,no,['poultry'],,1,yes,no,"['motorcyle', 'bicycle', 'television', 'radio', 'table', 'mobile_phone']",3,['none'],['na'],-14.71749213,34.35370834,1302.0,15.0,uuid:c2d63f59-2626-4b8b-ac6a-16fe4af1f8ea +242,Moz,07/07/2017,109,2017-07-07T05:41:50.000Z,2017-07-07T05:53:47.000Z,Sofala,Nhamatanda,Lamego,Massequece,20,no,5,5,no,20,no,no,no,no,grass,muddaub,earth,no,2,1,no,3,3,yes,,3.0,no,,13.0,yes,no,,no,,no,never,no,,,no,yes,['poultry'],,1,no,no,"['bicycle', 'mobile_phone']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'lab_ex_food']",-14.71761138,34.35387854,1240.0,11.0,uuid:ea053298-8556-4577-8218-78d4d4767e34 +243,Moz,07/07/2017,110,2017-07-07T06:27:14.000Z,2017-07-07T06:44:51.000Z,Sofala,Nhamatanda,Lamego,Massequece,35,no,3,3,no,35,no,no,no,no,grass,muddaub,earth,no,2,1,no,3,3,yes,,3.0,no,,20.0,yes,no,,no,,no,never,no,,,no,no,['poultry'],,1,no,no,"['bicycle', 'solar_panel', 'table', 'mobile_phone']",2,"['Jan', 'Feb', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'lab_ex_food']",-14.72343526,34.34431177,1260.0,24.0,uuid:b0e0740f-22a6-42e3-918e-e5a7bff24a52 +244,Moz,09/07/2017,120,2017-07-09T17:08:35.000Z,2017-07-09T17:29:19.000Z,Sofala,Nhamatanda,Lamego,Massequece,12,no,10,10,no,33,yes,no,yes,no,grass,sunbricks,earth,no,2,2,no,2,2,yes,,2.0,yes,"['Aug', 'Sept', 'Oct']",10.0,yes,no,,no,,no,never,no,,,yes,no,['none'],,1,no,no,"['bicycle', 'radio', 'solar_panel', 'mobile_phone']",3,['none'],['na'],-18.95176687,33.26177387,647.0,7.0,uuid:897f340d-1ba0-47fe-9dfc-0a76a39af7ed +245,Moz,10/07/2017,121,2017-07-10T05:14:53.000Z,2017-07-10T05:33:26.000Z,Sofala,Nhamatanda,Lamego,Madangua,12,no,6,6,no,5,no,no,no,no,mabatisloping,burntbricks,cement,yes,1,2,no,2,2,yes,,2.0,yes,"['Aug', 'Sept', 'Oct']",10.0,yes,no,,no,,no,more_once,no,,,yes,no,['none'],,1,yes,no,"['bicycle', 'radio', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",3,"['Jan', 'Feb', 'Mar', 'Apr']","['rely_less_food', 'borrow_food']",-18.95173891,33.26171114,664.0,5.0,uuid:45a11e51-009c-41da-8bf2-a8b66d6a66a2 +246,Moz,10/07/2017,122,2017-07-10T05:33:29.000Z,2017-07-10T05:53:07.000Z,Sofala,Nhamatanda,Lamego,Madangua,5,no,5,5,no,3,no,no,no,no,grass,sunbricks,earth,no,2,1,no,2,2,yes,,2.0,yes,"['Aug', 'Sept', 'Oct']",5.0,yes,no,,no,,no,never,no,,,yes,no,['none'],,1,no,no,"['solar_torch', 'mobile_phone']",3,"['Jan', 'Feb']","['rely_less_food', 'reduce_meals']",-18.95175155,33.2617534,667.0,5.0,uuid:c16129e9-c69c-4c02-8bba-52c7e42bed3b +247,Moz,10/07/2017,123,2017-07-10T05:53:13.000Z,2017-07-10T06:16:53.000Z,Sofala,Nhamatanda,Lamego,Madangua,25,no,7,7,no,15,yes,no,yes,no,mabatisloping,burntbricks,cement,no,1,3,no,3,3,yes,,3.0,yes,"['Sept', 'Oct', 'Nov']",10.0,yes,no,,no,,no,never,no,,,yes,no,['none'],,1,yes,no,"['bicycle', 'solar_panel', 'solar_torch', 'mobile_phone']",3,"['Jan', 'Dec']",['rely_less_food'],-18.95171584,33.26170882,655.0,5.0,uuid:837e0768-3c25-4aeb-a35b-85a41404f2f0 +248,Moz,10/07/2017,124,2017-07-10T06:27:59.000Z,2017-07-10T06:46:10.000Z,Sofala,Nhamatanda,Lamego,Madangua,15,no,11,11,no,9,no,no,no,no,mabatisloping,burntbricks,cement,no,1,4,no,3,3,yes,,3.0,yes,"['Sept', 'Oct', 'Nov']",10.0,yes,no,,no,,no,never,no,,,yes,no,['none'],,1,yes,no,"['bicycle', 'television', 'radio', 'solar_panel', 'solar_torch', 'electricity', 'table', 'mobile_phone', 'fridge']",3,"['Jan', 'Aug', 'Sept']",['rely_less_food'],-18.95175349,33.26169067,656.0,11.0,uuid:0ce65b2d-6061-4b55-a674-47148b54f696 +249,Moz,10/07/2017,125,2017-07-10T06:47:12.000Z,2017-07-10T07:19:29.000Z,Sofala,Nhamatanda,Lamego,Madangua,27,no,6,6,no,27,yes,no,yes,no,mabatisloping,burntbricks,cement,yes,1,3,no,2,2,yes,,2.0,yes,"['Sept', 'Oct', 'Nov']",27.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,yes,no,"['motorcyle', 'bicycle', 'television', 'radio', 'solar_panel', 'solar_torch', 'electricity', 'table', 'mobile_phone', 'fridge']",3,"['Jan', 'Feb', 'Dec']","['reduce_meals', 'borrow_food']",-18.95177568,33.26174639,649.0,15.0,uuid:c9d22767-dba3-4d7f-9f37-4a07da81e80a +250,Moz,10/07/2017,126,2017-07-10T07:39:31.000Z,2017-07-10T07:53:41.000Z,Sofala,Nhamatanda,Lamego,Madangua,5,no,7,7,no,5,yes,no,yes,no,mabatisloping,cement,cement,yes,1,3,no,3,3,yes,,3.0,yes,"['Sept', 'Oct', 'Nov']",5.0,yes,no,,no,,no,never,no,,,yes,no,['none'],,1,no,no,"['bicycle', 'television', 'radio', 'solar_torch', 'electricity', 'table', 'mobile_phone', 'fridge']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'reduce_meals']",-18.95177745,33.26172438,651.0,56.0,uuid:afc26fe7-a10e-4263-88ee-0edc411823f2 +251,Moz,10/07/2017,127,2017-07-10T07:54:26.000Z,2017-07-10T08:18:10.000Z,Sofala,Nhamatanda,Lamego,Madangua,16,no,9,9,no,3,no,no,no,no,grass,muddaub,earth,no,1,1,no,1,1,yes,,1.0,yes,"['Aug', 'Sept', 'Oct', 'Nov']",16.0,yes,no,,no,,no,never,no,,,no,no,['goats'],,1,yes,yes,"['bicycle', 'table', 'mobile_phone']",3,['Jan'],"['rely_less_food', 'lab_ex_food']",-18.95188039,33.26170161,619.0,8.0,uuid:5d3b42f7-8f16-4d11-bef6-083443da5eb9 +252,Moz,10/07/2017,129,2017-07-10T11:41:35.000Z,2017-07-10T11:59:07.000Z,Sofala,Nhamatanda,Lamego,Madangua,20,no,8,8,no,20,no,no,no,no,mabatisloping,burntbricks,cement,yes,1,3,no,2,2,yes,,2.0,yes,"['June', 'July', 'Aug', 'Sept', 'Oct', 'Nov']",10.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,no,no,"['bicycle', 'solar_torch', 'mobile_phone']",3,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'lab_ex_food']",-18.95175855,33.26184303,623.0,11.0,uuid:71d03142-40af-4227-9659-453e0cbaccda +253,Moz,10/07/2017,128,2017-07-10T11:59:11.000Z,2017-07-10T12:22:32.000Z,Sofala,Nhamatanda,Lamego,Madangua,10,no,15,15,no,20,no,yes,no,yes,mabatipitched,cement,tiles,yes,2,3,no,3,3,yes,,3.0,yes,"['June', 'July', 'Aug', 'Sept']",1.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,no,no,"['car', 'lorry', 'motorcyle', 'television', 'electricity', 'table', 'sofa_set', 'mobile_phone', 'fridge']",3,"['Jan', 'Nov', 'Dec']","['rely_less_food', 'limit_variety']",-18.95180249,33.26176401,646.0,20.0,uuid:49996ba1-b219-44be-8854-ec1fa2a1cd26 +254,Moz,10/07/2017,130,2017-07-10T12:28:31.000Z,2017-07-10T12:52:44.000Z,Sofala,Nhamatanda,Lamego,Madangua,7,no,3,3,yes,7,yes,no,yes,no,mabatisloping,cement,cement,yes,1,1,yes,2,2,yes,,2.0,yes,"['June', 'July', 'Aug', 'Sept', 'Oct', 'Nov']",2.0,yes,no,,no,,no,never,no,,,no,no,"['goats', 'poultry']",,2,no,no,"['car', 'television', 'radio', 'sterio', 'electricity', 'table', 'mobile_phone']",3,"['Jan', 'Feb', 'Mar']","['rely_less_food', 'limit_variety', 'go_forest']",-18.95178118,33.26170729,634.0,17.0,uuid:8c9af539-52ad-4ea0-be86-e9d215d97690 +255,Moz,07/07/2017,111,2017-07-07T07:05:51.000Z,2017-07-07T07:20:46.000Z,Sofala,Nhamatanda,Lamego,Massequece,40,no,2,2,yes,40,no,yes,no,yes,grass,muddaub,earth,no,2,1,no,3,3,yes,,3.0,yes,"['Aug', 'Sept', 'Oct']",5.0,yes,no,,no,,no,never,no,,,no,no,['poultry'],,1,no,no,['solar_torch'],3,"['Jan', 'Feb', 'Mar', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'borrow_food']",-14.72354118,34.34408304,1254.0,20.0,uuid:b4616110-9691-484f-8b20-a4bbc02ff742 +256,Moz,07/07/2017,112,2017-07-07T16:57:16.000Z,2017-07-07T17:17:43.000Z,Sofala,Nhamatanda,Lamego,Massequece,12,no,6,6,no,15,no,no,no,no,mabatisloping,burntbricks,earth,no,1,1,no,2,2,yes,,2.0,no,,8.0,yes,no,,no,,no,never,no,,,no,yes,['poultry'],,1,yes,no,"['television', 'mobile_phone']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'go_forest', 'lab_ex_food']",-14.7256636,34.3610469,0.0,2099.999,uuid:e039c1ca-2102-40d6-ab16-f42d11aa3429 +257,Moz,07/07/2017,114,2017-07-07T17:32:39.000Z,2017-07-07T17:48:46.000Z,Sofala,Nhamatanda,Lamego,Massequece,6,no,5,5,no,6,no,no,no,no,grass,muddaub,earth,yes,1,1,no,2,2,yes,,2.0,no,,6.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,"['bicycle', 'radio', 'solar_torch']",3,"['Jan', 'Feb', 'Nov', 'Dec']","['rely_less_food', 'borrow_food']",-14.71746301,34.35380822,1249.0,18.0,uuid:1bed1b67-f55f-4393-afc4-6b791e0154b9 +258,Moz,07/07/2017,115,2017-07-07T17:50:15.000Z,2017-07-07T18:06:30.000Z,Sofala,Nhamatanda,Lamego,Massequece,40,no,4,4,no,40,yes,yes,yes,yes,grass,muddaub,earth,no,1,1,no,3,3,yes,,3.0,no,,35.0,yes,no,,no,,no,never,no,,,no,no,['goats'],,1,yes,no,"['radio', 'solar_panel', 'electricity', 'mobile_phone']",3,"['Jan', 'Feb', 'Mar', 'Dec']","['reduce_meals', 'go_forest']",-14.71745811,34.35378321,1276.0,10.0,uuid:a279f8ba-3519-4751-b363-72da36617f3b +259,Moz,09/07/2017,116,2017-07-09T14:52:36.000Z,2017-07-09T15:06:41.000Z,Sofala,Nhamatanda,Lamego,Massequece,20,no,6,6,no,19,no,no,no,no,grass,muddaub,earth,no,2,1,no,2,2,yes,,2.0,no,,13.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,['solar_panel'],3,"['Jan', 'Feb', 'Nov', 'Dec']","['reduce_meals', 'borrow_food']",-18.95161101,33.26158652,651.0,12.0,uuid:83b2469d-b9e2-47ea-a8a1-9cb638f4b0a8 +260,Moz,09/07/2017,117,2017-07-09T15:12:30.000Z,2017-07-09T15:31:38.000Z,Sofala,Nhamatanda,Lamego,Massequece,30,no,10,10,yes,30,no,no,no,no,grass,muddaub,earth,no,2,1,no,3,3,yes,,3.0,no,,25.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,"['bicycle', 'solar_torch']",2,"['Jan', 'Dec']","['reduce_meals', 'borrow_food', 'go_forest', 'lab_ex_food']",-18.95407352,33.26594692,653.0,4.0,uuid:d0db831a-9910-47ee-b4be-3801e667d2b0 +261,Moz,09/07/2017,118,2017-07-09T15:31:48.000Z,2017-07-09T15:48:30.000Z,Sofala,Nhamatanda,Lamego,Nhansato,15,no,8,8,no,60,no,no,no,no,mabatisloping,sunbricks,earth,no,3,2,no,1,1,no,1.0,,,,,,,,,,,,,,,yes,no,['none'],,1,yes,no,,2,"['Jan', 'Nov', 'Dec']","['rely_less_food', 'borrow_food']",-18.95406826,33.26594114,651.0,5.0,uuid:f94c27c3-4a9c-4fd8-83d7-3112e666dc8e +262,Moz,09/07/2017,119,2017-07-09T16:21:06.000Z,2017-07-09T17:07:51.000Z,Sofala,Nhamatanda,Lamego,Nhansato,16,no,3,3,no,30,yes,yes,yes,yes,grass,sunbricks,earth,no,1,2,no,1,1,yes,,1.0,no,,6.0,yes,no,,no,,no,never,no,,,yes,no,['poultry'],,1,no,no,"['radio', 'solar_panel']",3,['none'],['na'],-18.95182097,33.2618461,658.0,15.0,uuid:a6b32653-0202-4453-a1e5-89bde5a271fd +263,Moz,13/07/2017,131,2017-07-13T16:12:12.000Z,2017-07-13T16:31:00.000Z,Sofala,Nhamatanda,Lamego,Madangua,23,no,6,6,no,20,no,no,no,no,grass,muddaub,earth,no,2,1,no,4,4,yes,,4.0,yes,"['June', 'July', 'Aug', 'Sept', 'Oct']",2.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,yes,no,"['bicycle', 'radio', 'mobile_phone']",3,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'borrow_food', 'go_forest']",-19.11220694,33.48337946,703.0,19.0,uuid:10e16c6c-db8e-4034-b324-ac8cea072b5c +264,Moz,13/07/2017,132,2017-07-13T16:31:13.000Z,2017-07-13T16:44:15.000Z,Sofala,Madangua,Lamego,Madangua,11,no,8,8,no,11,no,no,no,no,mabatisloping,burntbricks,cement,no,1,3,no,2,2,yes,,2.0,yes,"['June', 'July', 'Aug']",10.0,yes,no,,no,,no,never,no,,,no,no,['goats'],,1,yes,no,"['bicycle', 'radio', 'mobile_phone']",3,"['Jan', 'Feb', 'Mar']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'go_forest', 'lab_ex_food']",-19.11228821,33.48340581,685.0,32.0,uuid:4b6078b4-7e3b-45bd-9ad6-2553e7c8a829 +265,Moz,13/07/2017,133,2017-07-13T16:44:46.000Z,2017-07-14T04:57:46.000Z,Sofala,Nhamatanda,Lamego,Madangua,5,no,3,3,no,26,yes,yes,yes,yes,mabatisloping,sunbricks,cement,no,1,4,no,2,2,yes,,2.0,yes,"['July', 'Aug', 'Sept', 'Oct']",5.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,yes,no,"['television', 'electricity', 'table', 'mobile_phone']",3,"['Jan', 'Feb']","['rely_less_food', 'limit_variety', 'limit_portion', 'restrict_adults', 'lab_ex_food']",-19.11217152,33.48342965,710.0,4.0,uuid:ddfadef3-45c2-4679-b1cd-7b949cb4c9f2 +266,Moz,13/07/2017,134,2017-07-13T16:57:18.000Z,2017-07-14T04:58:05.000Z,Sofala,Nhamatanda,Lamego,Madangua,2,no,9,9,no,2,yes,no,yes,no,grass,sunbricks,earth,no,2,1,no,2,2,yes,,2.0,yes,"['July', 'Aug', 'Sept']",2.0,yes,no,,no,,no,never,no,,,no,no,['goats'],,1,yes,no,"['bicycle', 'television', 'radio', 'sterio', 'electricity', 'table', 'mobile_phone']",3,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals']",-19.11220491,33.48340178,706.0,21.0,uuid:23544c71-a6e8-406b-8687-f44afa9a8bc9 +267,Moz,13/07/2017,135,2017-07-13T17:23:51.000Z,2017-07-14T04:57:21.000Z,Sofala,Nhamatanda,Lamego,Madangua,17,no,2,2,no,17,no,no,no,no,grass,muddaub,earth,no,1,1,no,2,2,yes,,2.0,yes,"['June', 'July', 'Aug', 'Sept', 'Oct']",17.0,yes,no,,no,,no,never,no,,,no,no,['poultry'],,1,no,no,,3,"['Oct', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'seek_government']",-19.11219406,33.48344529,673.0,30.0,uuid:ee598272-5610-4172-81ef-60e65a6e4165 +268,Moz,14/07/2017,136,2017-07-14T04:40:36.000Z,2017-07-14T04:53:52.000Z,Sofala,Nhamatanda,Lamego,Madangua,3,no,4,4,no,5,no,no,no,no,grass,sunbricks,earth,no,1,1,no,1,1,yes,,1.0,yes,"['June', 'July', 'Aug', 'Sept', 'Oct']",3.0,yes,no,,no,,no,never,no,,,yes,yes,['none'],,1,no,no,"['bicycle', 'radio', 'solar_torch', 'table']",3,"['Jan', 'Feb', 'Mar']","['rely_less_food', 'limit_variety', 'reduce_meals', 'lab_ex_food']",-19.11210546,33.48331551,713.0,14.0,uuid:64daed29-5de4-4b95-a338-a83e2514f8fa +269,Moz,14/07/2017,137,2017-07-14T04:58:19.000Z,2017-07-14T05:12:58.000Z,Sofala,Nhamatanda,Lamego,Madangua,13,no,6,6,no,13,no,no,no,no,mabatisloping,burntbricks,cement,no,1,2,no,3,3,yes,,3.0,yes,"['July', 'Aug', 'Sept', 'Oct']",13.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,"['bicycle', 'solar_torch', 'table']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'lab_ex_food']",-19.11238719,33.48328691,689.0,12.0,uuid:8c0cb1b7-c5ee-4f29-bb6a-fbea72d5bc79 +270,Moz,14/07/2017,138,2017-07-14T14:50:39.000Z,2017-07-14T15:01:57.000Z,Sofala,Nhamatanda,Lamego,Madangua,10,no,5,5,no,10,yes,yes,yes,yes,mabatisloping,burntbricks,earth,no,1,1,no,2,2,yes,,2.0,yes,"['June', 'July', 'Aug', 'Sept', 'Oct']",7.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,no,no,"['bicycle', 'table']",3,"['Jan', 'Feb', 'Mar']","['rely_less_food', 'limit_variety', 'reduce_meals', 'restrict_adults', 'borrow_food', 'lab_ex_food']",-19.11637936,33.47159471,703.0,5.0,uuid:f2c47d3a-946b-4102-8f98-daa6e3b1ff2d +271,Moz,14/07/2017,139,2017-07-14T15:02:07.000Z,2017-07-14T15:11:27.000Z,Sofala,Nhamatandda,Lamego,Madangua,10,no,5,5,no,10,no,no,no,no,grass,sunbricks,earth,no,2,1,no,2,2,yes,,2.0,yes,"['June', 'July', 'Aug', 'Sept', 'Oct']",10.0,yes,yes,['cheaper'],no,,no,never,no,,,yes,no,['none'],,1,yes,no,['bicycle'],3,"['Jan', 'Feb', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'lab_ex_food']",-19.11642689,33.47149112,694.0,4.0,uuid:1d25b110-699d-4651-8740-33d60489881c +272,Moz,14/07/2017,140,2017-07-14T15:11:53.000Z,2017-07-14T15:28:01.000Z,Sofala,Nhamatanda,Lamego,Madangua,8,no,9,9,no,25,no,no,no,no,mabatisloping,burntbricks,cement,yes,2,3,no,3,3,yes,,3.0,yes,"['Aug', 'Sept', 'Oct', 'Nov']",8.0,yes,no,,no,,no,never,no,,,yes,yes,['none'],,1,yes,no,"['bicycle', 'radio', 'table']",3,"['Jan', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'restrict_adults', 'borrow_food', 'no_food', 'lab_ex_food']",-19.11637826,33.4715523,692.0,5.0,uuid:bfd1149b-54d8-4d57-ac8a-bf9d0c1ab265 +273,Moz,16/07/2017,141,2017-07-16T08:04:48.000Z,2017-07-16T08:20:31.000Z,Sofala,Nhamatanda,Lamego,Madangua,5,no,4,4,no,45,no,no,no,no,grass,sunbricks,earth,no,1,2,no,3,3,yes,,3.0,yes,"['June', 'July', 'Aug', 'Sept', 'Oct', 'Nov']",1.0,yes,no,,no,,no,never,yes,['farming'],,no,no,['none'],,1,yes,no,,3,"['Jan', 'Feb', 'Mar']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'restrict_adults', 'borrow_food', 'no_food', 'lab_ex_food']",-19.11206303,33.48352159,733.0,5.0,uuid:01d672d7-2854-4d2f-a392-e46cdef18e71 +274,Moz,16/07/2017,142,2017-07-16T08:20:37.000Z,2017-07-16T08:39:49.000Z,Sofala,Nhamatanda,Lamego,Madangua,25,no,10,10,no,15,no,no,no,no,mabatisloping,burntbricks,cement,no,2,3,yes,2,2,yes,,2.0,yes,"['June', 'July', 'Aug', 'Sept', 'Oct']",15.0,yes,no,,no,,no,never,no,,,yes,no,['poultry'],,1,yes,no,"['bicycle', 'television', 'radio', 'table', 'fridge']",3,['none'],['na'],-19.11210615,33.48352978,702.0,4.0,uuid:eb343026-25b8-423e-848d-ff9c5b3b3f4e +275,Moz,16/07/2017,143,2017-07-16T08:43:19.000Z,2017-07-16T08:59:44.000Z,Sofala,Nhamatanda,Lamego,Madangua,10,no,5,5,no,40,no,no,no,no,grass,sunbricks,earth,no,2,2,no,2,2,yes,,2.0,yes,"['July', 'Aug', 'Sept', 'Oct', 'Nov']",10.0,yes,no,,no,,no,never,no,,,no,no,['poultry'],,1,no,no,"['radio', 'table', 'mobile_phone']",3,['Jan'],"['rely_less_food', 'reduce_meals', 'restrict_adults', 'borrow_food']",-19.11199287,33.48352391,736.0,4.0,uuid:1d1106c3-dff0-4bc7-9aca-33c8d326bd47 +276,Moz,16/07/2017,144,2017-07-16T09:00:30.000Z,2017-07-16T09:18:41.000Z,Sofala,Nhamatanda,Lamego,Madangua,20,no,5,5,no,51,yes,yes,yes,yes,mabatisloping,sunbricks,cement,no,2,2,no,1,1,yes,,1.0,yes,"['June', 'July', 'Aug', 'Sept', 'Oct', 'Nov']",19.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,no,no,"['bicycle', 'solar_panel', 'mobile_phone']",3,['none'],['na'],-19.11208087,33.48350786,686.0,4.0,uuid:69dd39e1-8ecc-4b6b-9fb9-3c616081aa5b +277,Moz,16/07/2017,145,2017-07-16T09:18:45.000Z,2017-07-16T09:36:16.000Z,Sofala,Nhamatanda,Lamego,Madangua,15,no,10,10,no,40,no,no,no,no,mabatisloping,sunbricks,cement,no,2,3,no,2,2,yes,,2.0,yes,"['July', 'Aug', 'Sept', 'Oct', 'Nov']",6.0,yes,no,,no,,no,never,no,,,yes,no,['none'],,1,no,no,"['bicycle', 'television', 'radio', 'table', 'sofa_set']",3,"['Jan', 'Feb']","['rely_less_food', 'reduce_meals', 'borrow_food']",-19.11207978,33.48348548,701.0,4.0,uuid:bed12ca0-b067-4d00-ac0a-30dc2bd1c017 +278,Moz,16/07/2017,148,2017-07-16T09:41:24.000Z,2017-07-16T09:54:46.000Z,Sofala,Nhamatanda,Lamego,Madangua,5,no,3,3,no,22,yes,yes,yes,yes,grass,sunbricks,earth,no,1,1,no,2,2,yes,,2.0,yes,"['July', 'Aug', 'Sept', 'Oct', 'Nov']",5.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,no,no,['bicycle'],3,"['Jan', 'Feb', 'Mar']","['rely_less_food', 'reduce_meals', 'lab_ex_food']",-19.11208063,33.48351109,704.0,4.0,uuid:aa4da4ea-e72a-427a-8798-60c03ccdbef7 +279,Moz,16/07/2017,149,2017-07-16T14:13:44.000Z,2017-07-16T14:43:13.000Z,Sofala,Nhamatanda,Lamego,Madangua,50,yes,8,8,no,49,no,no,no,no,mabatisloping,burntbricks,earth,no,1,2,no,3,3,yes,,3.0,yes,"['July', 'Aug', 'Sept', 'Oct', 'Nov']",40.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,no,no,['bicycle'],2,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'reduce_meals', 'borrow_food', 'lab_ex_food']",-19.11227751,33.48340728,699.0,5.0,uuid:4a671885-24bf-416d-87ee-fd760a9ab134 +280,Moz,16/07/2017,147,2017-07-16T15:01:10.000Z,2017-07-16T15:16:24.000Z,Sofala,Nhamatanda,Lamego,Madangua,1,no,7,7,no,60,yes,yes,yes,yes,mabatisloping,sunbricks,earth,no,2,3,no,1,1,yes,,1.0,yes,"['July', 'Aug', 'Sept', 'Oct', 'Nov']",2.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,no,no,"['bicycle', 'mobile_phone']",3,['none'],['na'],-19.11223296,33.48343545,696.0,10.0,uuid:1e1795cb-f470-4597-bb80-bda16d399fb6 +281,Moz,16/07/2017,146,2017-07-16T15:16:45.000Z,2017-07-16T15:33:24.000Z,Sofala,Nhamatanda,Lamego,Madangua,2,no,8,8,no,31,yes,yes,yes,yes,grass,sunbricks,earth,no,1,2,no,2,2,yes,,2.0,yes,"['July', 'Aug', 'Sept', 'Oct', 'Nov']",2.0,yes,no,,no,,no,never,no,,,yes,yes,['none'],,1,no,no,"['bicycle', 'mobile_phone']",3,"['Sept', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'reduce_meals', 'lab_ex_food']",-19.11224829,33.48345129,705.0,12.0,uuid:1b29fefa-d169-47f6-8c22-dc2191e5702b +282,Moz,16/07/2017,150,2017-07-16T15:39:56.000Z,2017-07-16T16:03:11.000Z,Sofala,Nhamatanda,Lamego,Madangua,17,yes,5,5,no,20,no,no,no,no,mabatisloping,burntbricks,cement,no,3,1,no,3,3,yes,,3.0,yes,"['July', 'Aug', 'Sept', 'Oct', 'Nov']",17.0,yes,no,,no,,no,never,no,,,yes,no,['none'],,1,no,no,"['bicycle', 'radio', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",2,"['Jan', 'Feb', 'Sept', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'reduce_meals', 'borrow_food']",-19.1122128,33.48341528,714.0,10.0,uuid:3c22eb00-e327-4ffd-b9b1-368b4962f4bb +283,Moz,17/07/2017,151,2017-07-17T06:04:11.000Z,2017-07-17T06:24:29.000Z,Sofala,Nhamatanda,Lamego,Madangua,36,yes,5,5,yes,20,no,no,no,no,mabatisloping,sunbricks,earth,no,3,1,no,4,4,yes,,4.0,yes,"['July', 'Aug', 'Sept', 'Oct', 'Nov']",30.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,no,no,"['bicycle', 'radio', 'solar_panel', 'solar_torch', 'mobile_phone']",3,"['Jan', 'Dec']","['rely_less_food', 'reduce_meals', 'go_forest', 'lab_ex_food']",-19.11200034,33.48319807,743.0,44.0,uuid:37f32d47-ae52-4a25-9a34-cc005309d2cb +284,Moz,17/07/2017,152,2017-07-17T14:40:59.000Z,2017-07-17T15:08:49.000Z,Sofala,Nhamatanda,Lamego,Madangua,6,yes,8,8,no,37,yes,yes,yes,yes,mabatisloping,burntbricks,cement,yes,2,3,no,1,1,yes,,1.0,yes,"['Sept', 'Oct']",3.0,yes,no,,yes,yes,no,never,no,,,yes,no,['none'],,1,yes,no,"['motorcyle', 'bicycle', 'television', 'radio', 'electricity', 'table', 'sofa_set', 'mobile_phone', 'fridge']",3,['Oct'],"['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'lab_ex_food']",-19.11223544,33.48346775,715.0,10.0,uuid:182f85e1-d63d-45d4-b196-dfd384200a79 +285,Moz,17/07/2017,153,2017-07-17T15:09:01.000Z,2017-07-17T15:26:21.000Z,Sofala,Nhamatanda,Lamego,Madangua,23,yes,3,3,yes,23,no,no,no,no,grass,muddaub,earth,no,2,1,no,2,2,yes,,2.0,no,,13.0,yes,no,,yes,yes,no,never,no,,,no,yes,"['goats', 'poultry']",,2,no,no,"['radio', 'table']",3,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'lab_ex_food']",-19.11218811,33.48341404,709.0,12.0,uuid:0abd7c8e-7d97-4718-a2f0-1bb9cbade583 +286,Moz,17/07/2017,154,2017-07-17T15:26:56.000Z,2017-07-17T15:44:54.000Z,Sofala,Nhamatanda,Lamego,Madangua,23,yes,6,6,no,23,no,no,no,no,mabatisloping,sunbricks,earth,yes,3,3,no,2,2,yes,,2.0,no,,23.0,yes,no,,yes,no,no,never,no,,,yes,yes,"['sheep', 'poultry']",,2,yes,no,"['bicycle', 'solar_panel', 'table', 'mobile_phone']",3,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'reduce_meals', 'lab_ex_food']",-19.11220926,33.48346351,710.0,13.0,uuid:b257e20e-3aec-469d-bfe0-73e89938ce0b +287,Moz,17/07/2017,155,2017-07-17T15:45:17.000Z,2017-07-17T15:57:42.000Z,Sofala,Nhamatanda,Lamego,Madangua,2,yes,5,5,no,28,yes,yes,yes,yes,grass,muddaub,earth,no,1,1,no,2,2,yes,,2.0,yes,"['Aug', 'Sept', 'Oct', 'Nov']",2.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,no,no,,3,"['Jan', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'borrow_food', 'lab_ex_food']",-19.11216523,33.48345336,708.0,11.0,uuid:c81c353f-3c8c-4766-bc08-e86d84dadfd9 +288,Moz,18/07/2017,156,2017-07-18T07:42:06.000Z,2017-07-18T07:57:52.000Z,Sofala,Nhamatanda,Lamego,Madangua,6,yes,5,5,no,30,no,no,no,no,mabatisloping,burntbricks,earth,no,2,2,no,4,4,yes,,4.0,no,,6.0,no,no,,no,,no,never,no,,,yes,yes,['none'],,1,yes,no,"['bicycle', 'radio', 'table']",3,"['Jan', 'Feb', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'lab_ex_food']",-19.04349814,33.40419468,686.0,11.0,uuid:1d66cfa7-7cb7-4cd7-bf1c-4fa06ddd177e +289,Moz,18/07/2017,157,2017-07-18T07:58:46.000Z,2017-07-18T08:07:16.000Z,Sofala,Nhamatanda,Lamego,Madangua,21,yes,1,1,no,21,no,no,no,no,grass,burntbricks,earth,no,1,2,no,2,2,yes,,2.0,no,,21.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,no,no,"['bicycle', 'radio', 'solar_torch', 'table']",3,"['Jan', 'Feb', 'Mar', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals']",-19.04342373,33.40441698,641.0,33.0,uuid:773c37d3-9469-40d4-b02a-68e00d44f1d2 +290,Moz,18/07/2017,158,2017-07-18T11:49:12.000Z,2017-07-18T12:08:56.000Z,Sofala,Nhamatanda,Lamego,Madangua,2,yes,7,7,yes,1,yes,yes,no,yes,grass,burntbricks,earth,no,1,1,no,1,1,yes,,1.0,no,,2.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,yes,no,"['bicycle', 'table', 'mobile_phone']",3,"['Jan', 'Feb', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals']",-19.11202245,33.48328227,709.0,40.0,uuid:095f0ebd-4c28-4b89-bcc1-4c9837777d20 +291,Moz,18/07/2017,159,2017-07-18T12:08:59.000Z,2017-07-18T12:28:22.000Z,Sofala,Nhamatanda,Lamego,Madangua,25,yes,8,8,yes,45,yes,no,no,yes,mabatisloping,muddaub,earth,no,2,3,no,2,2,yes,,2.0,no,,25.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,yes,no,"['bicycle', 'radio', 'mobile_phone']",2,"['Jan', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'restrict_adults', 'borrow_food']",-19.11215367,33.4833973,707.0,13.0,uuid:8d426c93-f27f-4c97-bff3-836af81ef182 +292,Moz,18/07/2017,160,2017-07-18T12:29:03.000Z,2017-07-18T12:41:56.000Z,Sofala,Nhamatanda,Lamego,Madangua,1,no,4,4,no,7,yes,no,yes,no,grass,sunbricks,earth,no,2,3,no,2,2,yes,,2.0,no,,3.0,yes,no,,no,,no,never,no,,,yes,no,['none'],,1,yes,no,"['radio', 'fridge']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'reduce_meals']",-19.11223556,33.48339619,699.0,19.0,uuid:36629d68-8d69-45eb-a2b6-bd9f7043b0c8 +293,Moz,19/07/2017,161,2017-07-19T09:32:27.000Z,2017-07-19T09:47:12.000Z,Sofala,Nhamatanda,Lamego,Madangua,6,yes,9,9,no,49,yes,yes,yes,yes,mabatisloping,burntbricks,earth,no,3,3,no,2,2,yes,,2.0,no,,6.0,yes,no,,no,,no,never,no,,,no,no,['goats'],,1,yes,no,"['radio', 'table', 'mobile_phone']",3,"['Jan', 'Nov', 'Dec']","['rely_less_food', 'reduce_meals', 'borrow_food', 'lab_ex_food']",-19.11224265,33.48344019,689.0,9.0,uuid:beeea76e-ac18-4779-a64f-8a497069b9ca +294,Moz,19/07/2017,162,2017-07-19T09:47:15.000Z,2017-07-19T10:01:21.000Z,Sofala,Nhamatanda,Lamego,Madangua,16,no,8,8,no,13,yes,yes,yes,yes,mabatisloping,muddaub,earth,no,1,2,yes,3,3,yes,,3.0,no,,13.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,no,yes,['mobile_phone'],3,"['Jan', 'Feb', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'lab_ex_food']",-19.11218757,33.48340916,758.0,8.0,uuid:02488447-c91a-4de1-bffe-c5aefed5502c +295,Moz,19/07/2017,163,2017-07-19T10:01:34.000Z,2017-07-19T10:19:54.000Z,Sofala,Nhamatanda,Lamego,Madangua,12,no,9,9,no,12,no,no,no,no,mabatisloping,muddaub,earth,no,1,2,no,3,3,yes,,3.0,no,,12.0,yes,yes,"['obtn_more_water', 'less_work']",no,,no,never,no,,,no,no,['none'],,1,no,no,"['bicycle', 'radio', 'table']",3,"['Jan', 'Sept', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'reduce_meals']",-19.11213241,33.48338908,700.0,9.0,uuid:46d85123-b73a-4549-a108-3dcd1390c0ad +296,Moz,19/07/2017,164,2017-07-19T10:21:19.000Z,2017-07-19T10:35:32.000Z,Sofala,Nhamatanda,Lamego,Madangua,19,no,4,4,no,19,yes,no,no,no,mabatisloping,burntbricks,cement,no,1,2,no,2,2,yes,,2.0,no,,19.0,yes,no,,yes,no,no,never,no,,,yes,no,['none'],,1,yes,no,"['solar_torch', 'table', 'mobile_phone']",3,['none'],['na'],-19.11224278,33.48341985,702.0,5.0,uuid:fa4ff645-8c7e-4fa9-b7fe-e3b198b3107e +297,Moz,19/07/2017,165,2017-07-19T10:35:48.000Z,2017-07-19T10:49:44.000Z,Sofala,Nhamatanda,Lamego,Madangua,2,no,6,6,no,4,no,no,no,no,mabatisloping,burntbricks,cement,no,1,3,no,2,2,no,2.0,,,,,,,,,,,,,,,no,no,['none'],,1,yes,no,"['bicycle', 'mobile_phone']",3,"['Jan', 'Feb']","['limit_variety', 'reduce_meals']",-19.11224829,33.4834212,702.0,9.0,uuid:b261846a-6231-4a7b-9ccd-aa863b33a8e7 +298,Moz,19/07/2017,166,2017-07-19T10:56:38.000Z,2017-07-19T11:10:18.000Z,Sofala,Nhamatanda,Lamego,Madangua,1,no,6,6,no,2,no,no,no,no,grass,burntbricks,earth,no,1,2,no,2,2,yes,,2.0,no,,2.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,no,no,"['bicycle', 'solar_torch', 'electricity', 'mobile_phone']",3,"['Jan', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals']",-19.11215659,33.48337539,705.0,10.0,uuid:c6be9fea-59c2-471f-a80b-f2c65c2786be +299,Moz,19/07/2017,167,2017-07-19T11:10:31.000Z,2017-07-19T11:21:27.000Z,Sofala,Nhamatanda,Lamego,Madangua,4,no,5,5,no,4,no,yes,no,no,grass,sunbricks,earth,no,1,2,no,2,2,yes,,2.0,no,,4.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,no,no,"['bicycle', 'solar_torch', 'table']",3,"['Jan', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals']",-19.11213466,33.48341985,697.0,11.0,uuid:8de7d8da-1e63-4a90-8895-3c5033e41ba0 +300,Moz,19/07/2017,168,2017-07-19T11:21:30.000Z,2017-07-19T11:32:48.000Z,Sofala,Nhamatanda,Lamego,Madangua,1,no,4,4,no,1,no,no,no,no,grass,muddaub,earth,no,1,1,no,1,1,yes,,1.0,no,,1.0,yes,yes,['previous_unavailable'],no,,no,never,no,,,no,yes,['none'],,1,no,no,,3,"['Jan', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'no_food', 'lab_ex_food']",-19.11210894,33.48327438,699.0,13.0,uuid:a9e71668-712e-43f4-9007-7c7359a7ebfb +301,Moz,19/07/2017,169,2017-07-19T11:32:51.000Z,2017-07-19T11:44:07.000Z,Sofala,Nhamatanda,Lamego,Madangua,11,no,7,7,yes,11,no,yes,no,no,mabatisloping,burntbricks,cement,no,2,2,no,1,1,no,1.0,,,,,,,,,,,,,,,yes,no,['none'],,1,yes,no,"['motorcyle', 'bicycle', 'radio', 'solar_torch', 'electricity', 'table', 'mobile_phone']",3,"['Jan', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals']",-19.11220623,33.48351684,708.0,11.0,uuid:1b2cef54-227f-41c4-8254-1dbed17e9f78 +302,Moz,19/07/2017,170,2017-07-19T11:44:10.000Z,2017-07-19T11:55:32.000Z,Sofala,Nhamatanda,Lamego,Madangua,3,no,5,5,no,3,no,yes,no,yes,grass,sunbricks,earth,no,1,2,no,3,3,yes,,3.0,no,,3.0,yes,no,,no,,no,never,no,,,yes,yes,['none'],,1,yes,no,"['bicycle', 'radio', 'solar_panel', 'solar_torch', 'mobile_phone']",3,"['Jan', 'Feb']","['rely_less_food', 'reduce_meals', 'borrow_food', 'lab_ex_food']",-19.11222346,33.48340619,701.0,10.0,uuid:34daa5f8-ab78-4b35-9f1d-47245acdc6ca +303,Moz,19/07/2017,171,2017-07-19T15:47:30.000Z,2017-07-19T16:02:57.000Z,Sofala,Nhamatanda,Lamego,Madangua,10,no,7,7,no,10,no,no,no,no,mabatisloping,burntbricks,cement,no,1,3,no,2,2,yes,,2.0,no,,10.0,yes,no,,no,,no,never,no,,,yes,yes,['none'],,1,no,no,"['bicycle', 'television', 'radio', 'solar_panel', 'solar_torch', 'electricity', 'table', 'mobile_phone', 'fridge']",3,"['Jan', 'Nov', 'Dec']","['rely_less_food', 'limit_portion', 'borrow_food']",-19.11222518,33.48350478,704.0,5.0,uuid:cb483f76-7902-4106-b552-ad5fc2e2ec77 +304,Moz,19/07/2017,172,2017-07-19T16:03:50.000Z,2017-07-19T16:29:04.000Z,Sofala,Nhamatanda,Lamego,Madangua,30,no,5,5,yes,20,no,no,no,no,grass,muddaub,earth,no,1,2,no,4,4,yes,,4.0,no,,20.0,yes,no,,no,,no,never,no,,,no,yes,"['goats', 'pigs', 'poultry']",,3,yes,no,"['bicycle', 'radio', 'solar_panel', 'solar_torch']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'lab_ex_food']",-19.11219731,33.48345445,684.0,15.0,uuid:cbd0b040-2b8a-4bc7-8661-6c50d301a168 +305,Moz,19/07/2017,173,2017-07-19T16:29:16.000Z,2017-07-19T16:41:43.000Z,Sofala,Nhamatanda,Lamego,Madangua,23,no,6,6,no,23,yes,no,yes,no,mabatisloping,burntbricks,earth,no,2,3,no,2,2,yes,,2.0,no,,20.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,no,no,"['bicycle', 'radio', 'solar_panel']",3,"['Jan', 'Dec']","['rely_less_food', 'reduce_meals', 'lab_ex_food']",-19.11221544,33.4834675,697.0,10.0,uuid:ccbfaec0-dd21-40d0-8c5b-dba74c593efd +306,Moz,19/07/2017,174,2017-07-19T16:43:33.000Z,2017-07-19T16:54:47.000Z,Sofala,Nhamatanda,Lamego,Madangua,15,no,4,4,yes,13,yes,no,no,no,grass,muddaub,earth,no,1,2,no,2,2,yes,,2.0,no,,10.0,yes,no,,no,,no,never,no,,,no,no,['poultry'],,1,no,no,"['bicycle', 'radio', 'mobile_phone']",3,"['Jan', 'Oct', 'Nov', 'Dec']","['limit_variety', 'reduce_meals', 'borrow_food', 'lab_ex_food']",-19.11218126,33.48349666,702.0,7.0,uuid:402ead38-98d8-4ec4-8aac-9be71d797947 +307,Moz,19/07/2017,175,2017-07-19T16:54:50.000Z,2017-07-19T17:11:48.000Z,Sofala,Nhamatanda,Lamego,Madangua,19,no,9,9,no,17,yes,no,yes,no,grass,muddaub,earth,no,3,3,no,4,4,yes,,4.0,no,,17.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,no,no,"['motorcyle', 'radio', 'solar_torch']",3,"['Jan', 'Feb', 'Mar']","['rely_less_food', 'reduce_meals', 'lab_ex_food']",-19.11218621,33.48344957,702.0,9.0,uuid:63b9fe42-e366-476b-a6b5-6cfc0032381f +308,Moz,20/07/2017,176,2017-07-20T04:41:56.000Z,2017-07-20T04:58:07.000Z,Sofala,Nhamatanda,Lamego,Madangua,20,no,10,10,no,30,yes,yes,yes,yes,mabatisloping,burntbricks,earth,no,1,3,no,2,2,yes,,2.0,no,,20.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,"['bicycle', 'radio', 'solar_panel', 'table']",2,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'reduce_meals', 'restrict_adults', 'borrow_food', 'lab_ex_food']",-19.11201461,33.48341571,747.0,11.0,uuid:dba91fea-bc88-464e-9e6e-763fafd82a29 +309,Moz,20/07/2017,177,2017-07-20T04:58:14.000Z,2017-07-20T05:09:57.000Z,Sofala,Nhamatanda,Lamego,Madangua,3,no,5,5,no,17,no,no,no,no,grass,muddaub,earth,no,1,1,no,2,2,yes,,2.0,no,,3.0,yes,no,,no,,no,never,no,,,no,yes,"['goats', 'pigs']",,2,yes,no,"['television', 'radio', 'mobile_phone']",3,"['Jan', 'Feb']","['rely_less_food', 'reduce_meals', 'borrow_food', 'lab_ex_food']",-19.11215612,33.48341474,716.0,10.0,uuid:170b87e6-46c3-491a-a31c-9c8be40be862 +310,Moz,20/07/2017,178,2017-07-20T05:11:55.000Z,2017-07-20T05:28:02.000Z,Sofala,Nhamatanda,Lamego,Madangua,45,no,10,10,no,40,no,no,no,no,grass,muddaub,earth,no,3,1,no,3,3,yes,,3.0,no,,40.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,yes,no,"['bicycle', 'mobile_phone']",3,"['Jan', 'Feb', 'Nov', 'Dec']","['rely_less_food', 'borrow_food', 'go_forest']",-19.11217484,33.48339463,717.0,5.0,uuid:a5247389-a739-41e2-82da-4cd6a9903757 +311,Moz,24/07/2017,179,2017-07-24T04:51:43.000Z,2017-07-24T16:58:19.000Z,Sofala,Nhamatanda,Lamego,Madangua,12,no,6,6,no,15,yes,yes,yes,yes,mabatisloping,sunbricks,earth,no,1,1,no,2,2,no,2.0,,,,,,,,,,,,,,,no,yes,"['goats', 'pigs', 'poultry']",,3,yes,no,"['motorcyle', 'radio', 'solar_torch', 'table', 'mobile_phone']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'restrict_adults', 'borrow_food', 'go_forest', 'lab_ex_food']",-19.33407781,34.31642189,-3.0,3.0,uuid:b53acc44-ab9a-474e-943d-d81c32e0304f +312,Moz,24/07/2017,180,2017-07-24T05:14:10.000Z,2017-07-24T16:58:42.000Z,Sofala,Nhamatanda,Lamego,Madangua,10,no,5,5,no,5,yes,yes,yes,yes,mabatisloping,burntbricks,cement,no,1,3,no,2,2,yes,,2.0,no,,3.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,no,no,"['radio', 'sterio', 'electricity', 'table', 'mobile_phone']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion']",-19.33409091,34.31629507,36.0,5.0,uuid:e1a0e35e-b93f-447f-b64c-36434883a4e2 +313,Moz,24/07/2017,181,2017-07-24T09:45:53.000Z,2017-07-24T10:06:54.000Z,Sofala,Nhamatanda,Lamego,Madangua,7,no,8,8,no,7,no,no,no,no,mabatisloping,burntbricks,earth,no,2,2,no,3,3,no,3.0,,,,,,,,,,,,,,,no,no,['oxen'],,1,no,no,"['bicycle', 'radio', 'table', 'mobile_phone']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_variety']",-19.4064424,34.43747345,-19.0,5.0,uuid:786eff8c-0020-4603-8dce-d72fc6739003 +314,Moz,24/07/2017,182,2017-07-24T10:13:41.000Z,2017-07-24T16:59:00.000Z,Sofala,Nhamatanda,Lamego,Madangua,5,no,5,5,no,5,yes,yes,yes,yes,mabatisloping,burntbricks,cement,no,1,3,no,2,2,no,2.0,,,,,,,,,,,,,,,no,yes,['none'],,1,yes,no,"['bicycle', 'sterio', 'cow_plough', 'solar_panel', 'sofa_set']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'borrow_food', 'day_night_hungry', 'lab_ex_food']",-19.40654201,34.43746759,-17.0,10.0,uuid:fb7248ba-5ace-46d1-9e2d-e6dd5e23e468 +315,Moz,24/07/2017,183,2017-07-24T10:26:04.000Z,2017-07-24T10:39:59.000Z,Sofala,Nhamatanda,Lamego,Madangua,3,no,5,5,yes,3,no,no,no,no,mabatisloping,burntbricks,cement,yes,1,3,yes,3,3,yes,,3.0,no,,3.0,yes,no,,no,,no,never,no,,,yes,no,['none'],,1,no,no,"['bicycle', 'television', 'radio', 'sterio', 'table', 'sofa_set', 'mobile_phone', 'fridge']",3,['none'],['na'],-19.40647934,34.43747881,-22.0,13.0,uuid:0f19c5dc-7222-4e1b-b000-a326d1f95dad +316,Moz,24/07/2017,184,2017-07-24T12:54:14.000Z,2017-07-24T13:09:10.000Z,Sofala,Nhamatanda,Lamego,Lamego - Madangua,10,no,8,8,no,10,no,no,no,no,mabatisloping,burntbricks,cement,no,1,2,no,2,2,yes,,2.0,no,,1.0,yes,no,,no,,no,never,no,,,yes,no,['poultry'],,1,yes,no,"['motorcyle', 'bicycle', 'television', 'radio', 'sterio', 'solar_panel', 'electricity', 'table', 'mobile_phone']",3,"['Jan', 'Feb']","['rely_less_food', 'limit_variety', 'reduce_meals', 'go_forest']",-19.40667636,34.43746277,0.0,5.0,uuid:707bdb52-ad0f-43d5-8fd8-ad6cdce122b9 +317,Moz,24/07/2017,185,2017-07-24T13:09:36.000Z,2017-07-24T13:21:14.000Z,Sofala,Nhamatanda,Lamego,Madangua,35,yes,4,4,yes,4,no,no,no,no,mabatisloping,burntbricks,cement,yes,1,3,no,4,4,yes,,4.0,yes,['Dec'],35.0,yes,no,,no,,no,never,no,,,no,yes,['none'],,1,no,no,"['bicycle', 'radio', 'table', 'mobile_phone']",3,"['Jan', 'Feb', 'Dec']","['go_forest', 'lab_ex_food']",-19.4065507,34.43743141,14.0,12.0,uuid:cb1086cf-50e9-47e8-8ae9-eab03238b3b4 +318,Moz,24/07/2017,186,2017-07-24T15:05:20.000Z,2017-07-24T15:32:11.000Z,Sofala,Nhamatanda,Lamego,Madangua,7,no,6,6,no,10,no,no,no,no,grass,muddaub,earth,yes,2,1,yes,5,5,yes,,5.0,yes,"['Sept', 'Oct', 'Nov']",7.0,yes,no,,no,,no,never,no,,,no,yes,"['goats', 'pigs', 'poultry']",,3,no,no,"['bicycle', 'table', 'mobile_phone']",2,"['Jan', 'Feb']","['rely_less_food', 'limit_variety', 'go_forest']",-19.27284544,34.20390833,76.0,5.0,uuid:877b4334-b938-4b5a-acdf-7d856d9f48d1 +319,Moz,24/07/2017,187,2017-07-24T16:33:57.000Z,2017-07-24T16:45:20.000Z,Sofala,Nhamatanda,Lamego,Madangua,5,no,6,6,no,5,no,no,no,no,mabatisloping,burntbricks,cement,no,1,3,yes,2,2,no,2.0,,,,,,,,,,,,,,,yes,no,['goats'],,1,no,no,"['bicycle', 'radio', 'solar_panel', 'table']",2,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'limit_variety', 'borrow_food', 'go_forest']",-19.27286151,34.20393386,54.0,5.0,uuid:a73ff65b-9b63-4936-b0dc-425ee1460d54 +320,Moz,24/07/2017,188,2017-07-24T16:45:39.000Z,2017-07-24T16:57:09.000Z,Sofala,Nhamatanda,Lamego,Madangua,1,no,3,3,no,5,no,no,no,no,mabatisloping,burntbricks,cement,yes,1,2,no,1,1,no,1.0,,,,,,,,,,,,,,,no,no,['none'],,1,no,no,"['bicycle', 'radio', 'electricity', 'mobile_phone']",3,"['Jan', 'Nov', 'Dec']","['rely_less_food', 'reduce_meals', 'borrow_food']",-19.27285846,34.20390732,64.0,3.0,uuid:f25842db-6aa6-46ba-a105-ceda9f423957 +321,Moz,07/07/2017,113,2017-07-07T17:18:13.000Z,2017-07-24T17:00:52.000Z,Sofala,Nhamatanda,Lamego,Massequece,55,no,1,1,yes,60,no,no,no,no,grass,muddaub,earth,yes,1,1,no,1,1,yes,,1.0,no,,2.0,yes,no,,no,,no,never,no,,,no,no,['none'],,1,no,no,,2,"['Jan', 'Dec']","['limit_portion', 'reduce_meals', 'borrow_food', 'seek_government']",-14.7174565,34.35393313,1261.0,72.0,uuid:dbcf8573-60c8-46f0-818d-048965b81683 +322,Moz,25/07/2017,190,2017-07-25T10:53:07.000Z,2017-07-25T11:10:34.000Z,Sofala,Nhamatanda,Lamego,Madangua,1,no,6,6,no,27,no,no,no,no,mabatisloping,burntbricks,cement,yes,2,2,no,3,3,yes,,3.0,no,,1.0,yes,no,,no,,no,never,no,,,yes,no,['none'],,1,no,no,"['television', 'electricity', 'table', 'mobile_phone']",3,"['Jan', 'Nov', 'Dec']","['reduce_meals', 'borrow_food']",-19.41217768,34.44026935,22.0,11.0,uuid:3c85d8d3-22f9-4208-a40a-ec7a35081d85 +323,Moz,01/12/2016,1,2017-08-08T11:54:54.000Z,2017-08-08T13:59:46.000Z,Manica,Vanduzi,Vanduzi,Belas,17,yes,2,2,yes,17,no,no,no,no,grass,muddaub,earth,no,3,1,no,5,5,yes,,5.0,yes,"['Sept', 'Oct', 'Nov', 'Dec']",3.0,yes,yes,['avail_money'],yes,no,yes,never,no,,,yes,no,"['oxen', 'cows', 'poultry']",,3,yes,no,"['bicycle', 'radio', 'cow_plough', 'solar_torch', 'mobile_phone']",2,['Jan'],['seek_government'],-19.11734948,33.47660169,699.0,5.0,uuid:fa93a7dd-5b9a-4663-9302-76d20096ba52 +324,Moz,01/12/2016,2,2017-08-09T11:07:27.000Z,2017-08-09T11:53:48.000Z,Manica,Vanduzi,Vanduzi,Belas,9,yes,6,6,no,9,yes,no,no,no,mabatisloping,burntbricks,cement,no,3,4,no,4,4,yes,,4.0,yes,"['Aug', 'Sept', 'Oct']",3.0,yes,yes,['train_outside_org'],no,,no,never,no,,,no,no,"['cows', 'goats', 'pigs', 'poultry']",,4,yes,no,"['bicycle', 'radio', 'sterio', 'cow_plough', 'solar_panel', 'solar_torch']",3,"['Jan', 'Feb']","['rely_less_food', 'go_forest', 'seek_government']",-19.11739121,33.47659249,716.0,5.0,uuid:126ed6ff-d601-47c0-8b5b-8aa39d7b94f5 +325,Moz,01/12/2016,3,2017-08-09T11:55:38.000Z,2017-08-09T12:43:36.000Z,Manica,Vanduzi,Vanduzi,Belas,24,yes,5,5,yes,21,no,yes,no,yes,grass,muddaub,earth,no,1,2,no,3,3,yes,,3.0,yes,"['Aug', 'Sept', 'Oct', 'Nov', 'Dec']",3.0,yes,yes,['train_outside_org'],yes,no,no,frequently,no,,,no,no,"['goats', 'pigs', 'poultry']",,3,yes,no,"['bicycle', 'television', 'solar_panel', 'solar_torch', 'mobile_phone']",3,"['Sept', 'Oct', 'Nov', 'Dec']","['reduce_meals', 'borrow_food', 'seek_government']",-19.11738955,33.47659911,707.0,5.0,uuid:3c853174-090b-45be-ac26-254b083ed156 +326,Moz,01/12/2016,4,2017-08-09T12:43:54.000Z,2017-08-09T14:03:41.000Z,Manica,Vanduzi,Vanduzi,Belas,13,yes,12,12,no,15,yes,yes,yes,yes,mabatisloping,burntbricks,cement,no,4,2,no,6,6,yes,,6.0,yes,"['Sept', 'Oct', 'Nov']",1.0,yes,yes,['train_outside_org'],no,,no,frequently,no,,,no,no,"['cows', 'goats', 'poultry']",,3,yes,no,"['bicycle', 'radio', 'sterio', 'cow_plough', 'solar_torch', 'table', 'mobile_phone']",3,"['Oct', 'Nov', 'Dec']",['limit_variety'],-19.11737137,33.47655563,702.0,5.0,uuid:dcbb8590-15ee-493a-9896-2062a901fcfe +327,Moz,01/12/2016,5,2017-08-10T09:21:21.000Z,2017-08-10T11:35:48.000Z,Manica,Vanduzi,Vanduzi,Belas,7,yes,10,10,no,28,yes,yes,yes,yes,grass,sunbricks,earth,no,2,1,no,2,2,yes,,2.0,yes,"['Sept', 'Oct']",7.0,yes,yes,"['obtn_more_water', 'less_work']",yes,no,yes,never,no,,,no,no,['cows'],,1,no,no,"['bicycle', 'table', 'mobile_phone']",2,"['Aug', 'Sept', 'Oct']",['limit_variety'],-19.11732142,33.4765294,714.0,11.0,uuid:62decb21-69a2-4a25-9610-7460aab3c9ac +328,Moz,01/12/2016,6,2017-08-10T11:38:30.000Z,2017-08-10T12:44:31.000Z,Manica,Vanduzi,Vanduzi,Belas,2,yes,3,3,no,15,yes,yes,no,yes,mabatisloping,burntbricks,earth,no,1,2,yes,1,1,yes,,1.0,yes,"['Sept', 'Oct', 'Nov']",2.0,yes,no,,yes,no,yes,never,no,,,no,no,['poultry'],,1,yes,no,"['bicycle', 'radio', 'sterio', 'solar_torch', 'table', 'mobile_phone']",2,"['Sept', 'Oct', 'Nov', 'Dec']",['limit_variety'],-19.1174066,33.4765576,0.0,21.6,uuid:4b03f943-3ce7-4379-992a-9f65f1b7b05a +329,Moz,01/12/2016,7,2017-08-10T12:52:37.000Z,2017-08-10T13:38:49.000Z,Manica,Vanduzi,Vanduzi,Belas,7,yes,5,5,no,32,no,no,no,no,grass,sunbricks,earth,no,2,1,no,2,2,yes,,2.0,yes,"['Sept', 'Oct', 'Nov']",7.0,yes,no,,yes,no,yes,never,no,,,no,yes,['poultry'],,1,yes,no,"['sterio', 'solar_panel', 'solar_torch', 'mobile_phone']",3,"['Aug', 'Sept', 'Oct', 'Nov']",['lab_ex_food'],-19.1174066,33.4765576,0.0,20.1,uuid:afd25082-1857-442c-9296-b911b27751d5 +330,Moz,01/12/2016,8,2017-08-11T09:03:05.000Z,2017-08-11T11:16:35.000Z,Manica,Vanduzi,Vanduzi,Belas,5,yes,5,5,no,25,yes,no,yes,no,mabatisloping,burntbricks,earth,no,2,2,no,3,3,yes,,3.0,yes,"['Aug', 'Sept', 'Oct', 'Nov']",2.0,yes,yes,"['obtn_more_water', 'less_work']",yes,no,yes,never,no,,,yes,no,['none'],,1,no,no,"['computer', 'radio', 'sterio', 'cow_plough', 'solar_panel', 'table', 'mobile_phone']",3,"['Oct', 'Nov', 'Dec']","['limit_portion', 'reduce_meals']",-19.11739911,33.47657075,713.0,13.0,uuid:a56f105a-6f25-48a1-9a24-a32211dcfe31 +331,Moz,01/12/2016,9,2017-08-11T11:28:04.000Z,2017-08-11T12:53:59.000Z,Manica,Va,Vanduzi,Belas,16,yes,8,8,no,39,yes,yes,no,no,mabatipitched,sunbricks,cement,yes,2,3,no,3,3,yes,,3.0,no,,1.0,yes,yes,['less_work'],yes,no,no,never,yes,['farming'],,yes,no,"['oxen', 'goats', 'poultry']",,3,yes,no,"['television', 'radio', 'cow_plough', 'solar_panel', 'solar_torch', 'table', 'mobile_phone']",3,['none'],['na'],-19.11739116,33.47658977,718.0,10.0,uuid:009fc260-87cd-4acb-b695-24bff2c44cb6 +332,Moz,21/08/2017,191,2017-08-15T05:18:46.000Z,2017-08-21T06:10:54.000Z,Sofala,Nhamatanda,Lamego,Madangua,15,yes,4,4,no,50,no,yes,no,yes,grass,sunbricks,earth,no,2,1,no,2,2,yes,,2.0,no,,15.0,yes,no,,no,,no,never,no,,,yes,no,['cows'],,1,yes,no,"['bicycle', 'mobile_phone']",3,"['Jan', 'Nov', 'Dec']","['rely_less_food', 'reduce_meals', 'borrow_food']",-19.1115104,33.4759125,713.4000244,21.813,uuid:61f243ba-786e-4acb-9fb7-777e339622c7 +333,Moz,21/08/2017,192,2017-08-21T06:19:05.000Z,2017-08-21T06:50:50.000Z,Sofala,Nhamatanda,Lamego,Madangua,17,yes,12,12,no,18,no,no,no,no,mabatisloping,burntbricks,cement,no,5,3,no,3,3,yes,,3.0,no,,17.0,yes,no,,yes,yes,yes,never,yes,"['farming', 'wages', 'business']",,yes,yes,['poultry'],,1,yes,no,"['bicycle', 'radio', 'solar_panel', 'electricity', 'mobile_phone']",3,"['Jan', 'Oct', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'lab_ex_food']",-19.11147603,33.47614013,699.0,25.0,uuid:be47bcee-3b40-492a-9219-6b19d7e53be4 +334,Moz,21/08/2017,193,2017-08-21T10:31:06.000Z,2017-08-21T10:50:24.000Z,Sofala,Nhamatanda,Lamego,Madangua,60,yes,6,6,no,51,yes,no,yes,no,mabatisloping,cement,cement,yes,2,3,no,2,2,yes,,2.0,no,,6.0,yes,no,,yes,yes,yes,never,no,,,yes,no,['none'],,1,no,no,"['bicycle', 'television', 'radio', 'electricity', 'table', 'sofa_set', 'mobile_phone', 'fridge']",3,"['Jan', 'Feb', 'Nov', 'Dec']","['rely_less_food', 'reduce_meals']",-19.40793648,33.29214318,607.0,17.0,uuid:76d38063-777a-4cec-8fad-caba34499145 +335,Moz,21/08/2017,194,2017-08-21T10:50:30.000Z,2017-08-21T11:13:21.000Z,Sofala,Nhamatanda,Lamego,Madangua,8,yes,8,8,no,13,no,no,no,no,mabatisloping,burntbricks,cement,yes,1,4,no,2,2,yes,,2.0,no,,8.0,yes,yes,['avail_money'],yes,yes,yes,frequently,no,,,yes,no,"['oxen', 'cows']",,2,yes,no,"['motorcyle', 'bicycle', 'television', 'electricity', 'table', 'mobile_phone', 'fridge']",3,"['Jan', 'Feb', 'Mar']",['na'],-19.40803975,33.29180602,598.0,13.0,uuid:f6a8cfeb-419b-4852-ad03-e2bd75a1e52e +336,Moz,21/08/2017,195,2017-08-21T11:14:03.000Z,2017-08-21T11:28:32.000Z,Sofala,Nhamatanda,Lamego,Madangua,15,yes,3,3,no,40,yes,no,yes,no,mabatisloping,burntbricks,cement,no,1,3,no,2,2,yes,,2.0,no,,15.0,yes,no,,no,,no,never,no,,,yes,yes,['none'],,1,yes,yes,"['bicycle', 'radio', 'sofa_set']",3,"['Jan', 'Nov', 'Dec']","['rely_less_food', 'reduce_meals', 'borrow_food', 'lab_ex_food']",-19.40794986,33.29208865,588.0,7.0,uuid:02d6de35-3dc6-4729-b82d-ad59c94ed789 +337,Moz,21/08/2017,196,2017-08-21T13:07:57.000Z,2017-08-21T13:22:51.000Z,Sofala,Nhamatanda,Lamego,Madangua,5,yes,7,7,yes,40,no,yes,no,yes,grass,sunbricks,earth,no,2,3,no,2,2,yes,,2.0,yes,"['Sept', 'Oct']",5.0,yes,no,,no,,no,never,no,,,yes,no,"['goats', 'poultry']",,2,yes,no,"['bicycle', 'radio', 'mobile_phone']",3,"['Jan', 'Feb']","['rely_less_food', 'limit_portion', 'reduce_meals']",-19.11140353,33.47609595,730.0,28.0,uuid:30777507-6d70-4837-9bd9-a2b4587f3f39 +338,Moz,21/08/2017,197,2017-08-21T13:44:42.000Z,2017-08-21T14:01:45.000Z,Sofala,Nhamatanda,Lamego,Madangua,30,yes,9,9,yes,30,no,yes,no,yes,grass,sunbricks,earth,no,3,2,no,2,2,yes,,2.0,no,,30.0,yes,no,,no,,no,never,no,,,yes,no,"['goats', 'poultry']",,2,yes,no,"['bicycle', 'solar_panel']",3,"['Jan', 'Dec']","['rely_less_food', 'reduce_meals', 'restrict_adults', 'borrow_food']",-19.11147023,33.47612499,705.0,39.0,uuid:74c5d3b9-775d-4aa6-80b2-931c169198cb +339,Moz,21/08/2017,199,2017-08-21T14:38:13.000Z,2017-08-21T15:06:45.000Z,Sofala,Nhamatanda,Lamego,Madangua,1,yes,9,9,no,17,no,yes,no,yes,mabatisloping,burntbricks,cement,no,4,3,no,3,3,yes,,3.0,yes,"['Sept', 'Oct']",1.0,yes,no,,no,,no,never,no,,,yes,yes,['none'],,1,yes,no,"['bicycle', 'radio', 'solar_panel', 'mobile_phone']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_portion', 'reduce_meals', 'borrow_food', 'lab_ex_food']",-19.1115104,33.4759125,713.4000244,21.836,uuid:27fc9dcb-aef9-4068-8464-1466fccdbe97 +340,Moz,21/08/2017,198,2017-08-22T04:18:31.000Z,2017-08-23T06:22:40.000Z,Sofala,Nhamatanda,Lamego,Nguinea,18,no,6,6,no,18,no,yes,no,yes,grass,muddaub,earth,no,2,1,no,2,2,no,2.0,,,,,,,,,,,,,,,no,yes,['none'],,1,yes,no,"['bicycle', 'radio', 'sterio', 'solar_panel', 'mobile_phone']",3,"['Jan', 'Nov', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'restrict_adults', 'lab_ex_food']",-19.11218866,33.48341368,735.0,5.0,uuid:f4e489af-a8b2-4dec-9b59-3baf390206bf +341,Moz,21/08/2017,200,2017-08-22T04:38:27.000Z,2017-08-22T08:27:40.000Z,Sofala,Nhamatanda,Lamego,Madangua,40,yes,3,3,yes,40,no,no,no,no,grass,sunbricks,earth,no,2,1,no,3,3,yes,,3.0,no,,6.0,yes,no,,no,,no,never,no,,,yes,yes,['none'],,1,no,no,"['solar_panel', 'solar_torch', 'mobile_phone']",3,"['Jan', 'Feb', 'Mar']","['rely_less_food', 'limit_portion', 'lab_ex_food']",-19.1126712,33.4764327,0.0,1902.0,uuid:bd3d281a-6782-4d9a-bd69-d5736bc30df9 +342,Moz,22/08/2017,201,2017-08-22T09:26:55.000Z,2017-08-22T09:51:58.000Z,Sofala,Nhamatanda,Lamego,Madangua,10,yes,10,10,no,40,yes,yes,yes,yes,mabatisloping,burntbricks,cement,no,1,3,no,2,2,yes,,2.0,no,,10.0,yes,no,,no,,no,never,no,,,yes,no,['none'],,1,yes,no,"['bicycle', 'radio', 'solar_panel', 'table', 'mobile_phone']",2,"['Jan', 'Oct', 'Dec']","['rely_less_food', 'reduce_meals']",-19.1114042,33.4759344,0.0,23.514,uuid:d2b25f5f-4359-42ef-99bd-ffb59cfc8407 +343,Moz,22/08/2017,202,2017-08-22T09:52:02.000Z,2017-08-22T10:07:46.000Z,Sofala,Nhamatanda,Lamego,Nguinea,18,no,2,2,no,25,yes,yes,yes,yes,grass,muddaub,earth,no,1,1,no,2,2,yes,,2.0,no,,16.0,yes,no,,no,,no,never,no,,,yes,no,['poultry'],,1,yes,no,"['bicycle', 'radio', 'solar_panel', 'mobile_phone']",3,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals']",-19.1114087,33.4759125,0.0,22.567,uuid:46ce8db9-5c01-48af-8b77-0d1f0d5fc258 +344,Moz,22/08/2017,203,2017-08-22T10:10:14.000Z,2017-08-22T10:24:23.000Z,Sofala,Nhamatanda,Lamego,Nguinea,19,no,10,10,no,22,no,no,no,no,grass,muddaub,earth,no,3,2,no,2,2,no,2.0,,,,,,,,,,,,,,,no,no,"['goats', 'poultry']",,2,yes,no,"['bicycle', 'solar_panel', 'mobile_phone']",3,"['Jan', 'Feb', 'Dec']","['rely_less_food', 'limit_variety', 'limit_portion', 'reduce_meals', 'go_forest']",-19.11138608,33.47606571,733.0,118.0,uuid:2abe07c7-4efa-4d0e-8e19-8712bd987845 +345,Moz,22/08/2017,204,2017-08-22T10:24:38.000Z,2017-08-22T10:34:43.000Z,Sofala,Nhamatanda,Lamego,Ndedja,35,no,2,2,no,15,no,yes,no,yes,grass,burntbricks,cement,yes,2,2,yes,3,3,no,3.0,,,,,,,,,,,,,,,no,no,['goats'],,1,no,no,"['radio', 'mobile_phone']",3,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'reduce_meals']",-19.1113884,33.4759125,0.0,23.504,uuid:925708f3-a2d9-4331-a5d4-856efd184dc8 +346,Moz,22/08/2017,207,2017-08-22T10:35:17.000Z,2017-08-22T10:41:35.000Z,Sofala,Nhamatanda,Lamego,Ndedja,30,no,1,1,no,55,no,no,no,no,grass,muddaub,earth,no,1,1,no,1,1,no,1.0,,,,,,,,,,,,,,,no,no,['poultry'],,1,yes,no,['radio'],3,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'limit_variety', 'borrow_food']",-19.11098351,33.47564293,722.0,117.0,uuid:abdba24f-7bca-4d79-8a01-273547da52f5 +347,Moz,22/08/2017,209,2017-08-22T10:42:15.000Z,2017-08-23T06:21:54.000Z,Sofala,Nhamatanda,Lamego,Ndedja,35,no,1,1,yes,35,no,no,no,no,grass,muddaub,earth,no,1,1,no,2,2,no,2.0,,,,,,,,,,,,,,,no,no,['none'],,1,yes,no,,3,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'reduce_meals', 'borrow_food', 'go_forest', 'lab_ex_food']",-19.1113139,33.476522,0.0,82.5,uuid:ef587b92-5dc4-47b3-b631-a3b191649066 +348,Moz,22/08/2017,205,2017-08-23T05:08:13.000Z,2017-08-23T05:27:06.000Z,Sofala,Nhamatanda,Lamego,Ndedja,20,no,8,8,no,20,no,no,no,no,grass,muddaub,earth,no,1,5,no,4,4,no,4.0,,,,,,,,,,,,,,,no,no,"['pigs', 'poultry']",,2,no,no,"['bicycle', 'radio', 'solar_torch', 'mobile_phone']",3,['none'],"['rely_less_food', 'limit_variety', 'reduce_meals', 'go_forest', 'lab_ex_food']",-19.1113139,33.476522,0.0,72.9,uuid:2eb827ea-c94d-4a55-bd64-59bc67459c17 +349,Moz,22/08/2017,206,2017-08-23T05:39:40.000Z,2017-08-23T05:53:54.000Z,Sofala,Nhamatanda,Lamego,Ndedja,35,no,5,5,no,68,yes,yes,yes,yes,grass,muddaub,earth,no,1,2,no,2,2,no,2.0,,,,,,,,,,,,,,,no,yes,['poultry'],,1,yes,no,['radio'],3,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'go_forest', 'lab_ex_food']",-19.1114023,33.4758475,0.0,45.6,uuid:d8dc7800-eb7d-4b8f-84be-4dcddeb55b18 +350,Moz,22/08/2017,208,2017-08-23T05:53:59.000Z,2017-08-23T06:04:39.000Z,Sofala,Nhamatanda,Lamego,Ndedja,10,no,7,7,no,10,yes,yes,yes,yes,grass,muddaub,earth,no,1,2,no,3,3,no,3.0,,,,,,,,,,,,,,,no,yes,['poultry'],,1,yes,no,"['bicycle', 'solar_panel', 'mobile_phone']",3,"['Jan', 'Feb', 'Mar', 'Dec']","['rely_less_food', 'limit_variety', 'reduce_meals', 'day_night_hungry', 'lab_ex_food']",-19.11192854,33.4767806,696.0,72.0,uuid:02cde43c-adcf-4b1d-8ef7-bd665ccab756 diff --git a/data/SN7577.sqlite b/data/SN7577.sqlite new file mode 100644 index 00000000..49d04737 Binary files /dev/null and b/data/SN7577.sqlite differ diff --git a/data/SN7577.tab b/data/SN7577.tab new file mode 100644 index 00000000..d040b69f --- /dev/null +++ b/data/SN7577.tab @@ -0,0 +1,1287 @@ +Q1 Q2 Q3 Q4 Q5ai Q5aii Q5aiii Q5aiv Q5av Q5avi Q5avii Q5aviii Q5aix Q5ax Q5axi Q5axii Q5axiii Q5axiv Q5axv Q5bi Q5bii Q5biii Q5biv Q5bv Q5bvi Q5bvii Q5bviii Q5bix Q5bx Q5bxi Q5bxii Q5bxiii Q5bxiv Q5bxv Q6 Q7a Q7b Q8 Q9 Q10a Q10b Q10c Q10d Q11a Q11b Q12a Q12b Q13i Q13ii Q13iii Q13iv Q14 Q15 Q16a Q16b Q16c Q16d Q16e Q16f Q16g Q16h Q17a Q17b Q17c Q17d Q17e Q17f Q17g Q18ai Q18aii Q18aiii Q18aiv Q18av Q18avi Q18avii Q18aviii Q18aix Q18bi Q18bii Q18biii Q18biv Q18bv Q18bvi Q18bvii Q18bviii Q18bix Q19a Q19b Q19c Q19d access1 access2 access3 access4 access5 access6 access7 web1 web2 web3 web4 web5 web6 web7 web8 web9 web10 web11 web12 web13 web14 web15 web16 web17 web18 dbroad intten netfq daily1 daily2 daily3 daily4 daily5 daily6 daily7 daily8 daily9 daily10 daily11 daily12 daily13 daily14 daily15 daily16 daily17 daily18 daily19 daily20 daily21 daily22 daily23 daily24 daily25 sunday1 sunday2 sunday3 sunday4 sunday5 sunday6 sunday7 sunday8 sunday9 sunday10 sunday11 sunday12 sunday13 sunday14 sunday15 sunday16 sunday17 sunday18 sunday19 sunday20 press1 press2 broadsheet1 broadsheet2 broadsheet3 popular1 popular2 popular3 popular4 popular5 sex age agegroups numage class sgrade work gor qual ethnic ethnicity party cie wrkcie income tenure tennet lstage maritl numhhd numkid numkid2 numkid31 numkid32 numkid33 numkid34 numkid35 numkid36 wts +1 -1 1 8 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 3 3 3 2 3 3 4 1 4 2 2 2 2 1 0 0 0 3 2 3 3 1 4 2 3 2 4 4 2 2 2 4 2 1 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 3 2 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 64 2 3 8 7 3 1 1 1 1 8 12 2 1 4 6 3 11 2 0 0 0 0 1 0 1.11439 +3 -1 1 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 3 3 4 5 1 1 4 4 3 3 1 0 0 0 3 3 2 4 1 4 4 3 1 5 5 1 4 1 3 1 2 1 0 1 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 2 2 2 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 25 1 2 1 11 3 1 1 3 2 1 16 1 1 1 4 3 11 2 0 0 0 0 1 0 2.56604 +10 3 2 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 1 0 1 0 0 2 2 2 3 4 6 4 2 3 3 3 3 3 1 0 0 0 3 1 2 4 1 3 4 4 2 5 4 2 2 2 3 3 2 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 9 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 7 7 90 3 4 8 10 7 1 1 3 2 1 17 2 1 4 6 2 11 2 0 0 0 0 1 0 2.04468 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 5 4 3 3 2 2 4 4 4 4 1 0 0 0 4 3 6 6 6 6 6 6 6 6 3 2 3 2 2 3 5 1 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 4 4 4 4 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 1 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 48 3 4 7 10 1 1 4 -1 1 7 17 2 1 4 4 1 -1 2 0 0 0 0 1 0 1.07592 +10 2 6 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 3 3 4 3 3 2 2 3 4 3 3 1 0 0 0 4 3 1 3 1 2 2 2 4 4 4 2 3 1 2 2 1 0 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 1 1 2 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 3 4 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 4 4 48 4 5 7 3 9 1 1 2 1 7 16 1 1 4 4 1 -1 2 0 0 0 0 1 0 1.25068 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 2 2 2 2 4 3 4 1 3 4 4 3 4 1 0 0 0 2 2 3 5 1 3 2 4 1 5 3 1 1 1 2 2 3 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 2 2 1 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 54 1 2 2 8 4 1 1 1 1 2 12 2 1 4 2 2 -1 2 0 0 0 0 1 0 .85126 +1 -1 1 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 2 2 2 4 5 4 4 1 2 2 3 2 3 1 0 0 0 2 2 3 4 3 3 3 2 2 3 2 2 2 2 2 2 2 0 0 1 1 1 0 0 0 0 0 0 0 1 0 1 1 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 9 4 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 1 1 0 1 1 2 7 6 74 1 2 8 7 4 1 1 1 2 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.51383 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 1 0 1 1 0 1 1 0 1 0 0 2 2 3 3 2 4 2 4 4 3 4 2 2 1 0 0 0 2 2 2 4 1 2 3 2 1 5 5 2 1 2 5 2 1 0 0 1 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 2 2 2 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 5 4 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 7 7 79 3 4 8 6 7 1 1 1 2 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .86168 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 3 3 4 2 4 2 3 4 4 4 4 1 0 0 0 4 4 3 3 2 3 2 3 3 3 4 1 1 1 5 2 1 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 2 2 5 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 65 2 3 8 6 1 1 1 -1 1 8 16 2 1 4 6 2 11 2 0 0 0 0 1 0 .48973 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 1 0 0 0 1 0 0 0 0 2 2 2 3 4 4 4 2 2 4 4 3 3 1 0 0 0 2 2 5 5 1 5 1 4 1 5 5 2 1 1 5 2 1 0 1 1 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 2 2 2 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 3 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 6 5 62 3 4 8 6 1 1 1 2 1 8 17 1 1 4 6 1 -1 2 0 0 0 0 1 0 .36381 +4 -1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 1 0 1 0 1 0 1 1 0 1 0 0 1 2 2 4 1 4 4 4 2 3 3 1 1 1 0 0 0 2 1 5 5 1 5 1 5 1 5 5 1 1 1 4 4 1 0 1 0 1 0 1 0 0 0 0 1 1 1 0 0 0 0 0 2 2 2 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 62 4 6 8 6 3 1 1 4 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .37077 +1 -1 2 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 1 0 0 0 0 0 0 0 2 2 2 2 3 2 4 1 2 2 3 2 2 1 0 0 0 3 1 2 3 1 3 3 2 2 4 2 1 1 1 4 2 2 0 1 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 1 1 2 1 1 0 1 0 0 0 1 1 1 0 0 1 1 1 0 1 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 53 1 2 1 2 2 1 1 1 1 1 13 1 1 4 2 2 -1 2 0 0 0 0 1 0 2.0845 +10 2 9 9 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 4 4 3 4 2 4 4 2 2 3 3 2 3 1 0 0 0 4 4 5 5 1 4 2 4 4 5 2 1 1 1 4 2 1 1 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 3 2 1 1 0 1 0 0 0 1 1 1 1 0 1 1 1 1 0 0 1 1 1 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 3 3 41 3 4 1 2 2 1 1 2 2 1 9 3 2 3 1 5 4 1 0 0 1 1 0 0 1.60022 +11 11 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 3 3 4 2 3 5 1 2 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 2 1 2 2 2 1 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 7 86 4 5 8 2 7 1 1 11 1 8 17 3 2 4 6 1 -1 2 0 0 0 0 1 0 1.45152 +1 -1 1 3 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 0 0 0 2 2 2 3 5 5 5 2 3 4 4 3 3 1 0 0 0 4 2 4 5 1 5 4 4 5 4 5 4 4 1 2 3 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 2 1 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 1 0 0 0 0 0 2 8 2 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 7 6 69 3 4 8 8 4 2 13 1 2 8 15 2 1 4 2 2 -1 2 0 0 0 0 1 0 .40854 +2 -1 1 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 3 2 2 2 2 2 2 2 2 1 0 0 0 2 1 3 4 1 3 4 4 2 4 2 2 2 2 2 4 2 1 0 1 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 3 1 2 1 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 0 0 0 0 0 0 2 7 6 65 2 3 8 5 1 1 2 2 1 8 17 2 1 4 6 2 11 2 0 0 0 0 1 0 .85808 +10 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 4 3 2 4 1 2 2 4 2 3 1 0 0 0 4 2 2 4 2 4 3 2 4 4 2 2 2 2 2 2 1 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 2 3 1 1 1 1 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 1 0 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 35 1 2 1 11 4 1 1 10 1 1 15 1 1 2 2 2 -1 2 0 0 0 0 1 0 1.65617 +2 -1 2 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 2 2 2 4 4 6 6 2 2 2 4 2 4 1 0 0 0 4 1 2 3 1 2 4 1 2 3 3 2 2 3 2 6 2 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 52 4 6 7 11 1 1 1 2 1 7 1 5 2 4 4 1 -1 2 0 0 0 0 1 0 1.01381 +2 -1 6 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 2 2 2 3 4 3 2 2 3 3 4 4 4 1 0 0 0 2 4 2 4 2 4 2 2 2 4 6 2 2 2 3 6 2 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 2 6 1 1 0 1 0 0 0 1 0 1 1 1 1 0 0 0 0 0 1 1 0 0 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 27 2 3 1 11 3 1 4 2 1 1 6 4 2 3 1 3 1 1 1 0 0 0 0 0 1.17951 +2 -1 3 8 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 1 0 0 0 0 2 3 3 2 4 3 4 2 3 3 3 3 3 0 1 0 0 2 4 3 4 1 5 2 4 2 4 6 2 1 2 2 6 2 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 2 2 2 1 1 1 1 0 1 0 1 1 1 1 0 1 1 1 1 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 19 2 3 5 11 3 1 1 2 1 5 2 4 2 1 4 4 11 2 0 0 0 0 1 0 .80929 +10 2 2 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 3 3 3 4 4 3 3 3 3 4 4 1 0 0 0 3 4 2 3 4 3 3 3 3 3 3 3 3 3 3 3 3 0 0 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 3 3 3 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 69 3 4 8 10 6 1 1 2 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .62783 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 4 2 2 2 2 2 4 3 3 3 3 4 4 1 0 0 0 4 2 1 3 1 2 4 2 2 2 3 1 3 2 1 3 2 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 2 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 73 2 3 8 11 7 1 1 -1 1 8 17 4 2 4 6 1 -1 2 0 0 0 0 1 0 .65354 +11 11 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 2 4 3 4 3 3 3 3 3 1 0 0 0 3 4 3 3 3 3 3 3 3 3 3 3 3 6 6 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 2 2 2 1 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 50 2 3 4 3 1 2 14 11 2 1 17 4 2 3 1 5 3 1 0 0 1 1 0 0 .45708 +10 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 0 0 0 0 1 1 0 0 0 2 2 2 3 5 2 2 1 2 3 4 3 3 1 0 0 0 2 3 3 2 2 1 3 2 3 3 2 2 1 2 3 2 3 0 0 1 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 1 3 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 1 0 0 1 0 2 7 6 71 1 2 8 3 6 2 13 1 2 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .47963 +1 -1 2 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 1 2 5 2 2 4 1 4 4 3 4 1 0 0 0 3 2 1 5 5 5 1 5 1 5 3 3 1 1 2 3 1 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 1 5 5 1 0 0 1 1 1 0 1 1 1 1 1 0 0 1 1 0 0 1 1 0 0 1 0 0 1 9 1 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 1 0 0 1 0 2 2 2 33 1 2 11 3 4 2 11 1 2 1 9 1 1 3 1 4 2 1 1 0 0 1 0 0 .61752 +2 -1 1 6 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 4 4 2 3 3 3 3 3 3 1 0 0 0 4 4 4 4 3 4 2 3 3 4 5 1 3 1 3 3 1 1 0 0 1 0 1 0 0 0 1 1 0 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 -1 0 0 0 0 0 0 0 0 2 4 4 49 3 4 1 10 6 1 1 2 1 1 17 1 1 4 6 3 11 2 0 0 0 0 1 0 1.35928 +1 -1 2 1 0 0 1 1 0 1 1 0 1 0 1 0 1 0 0 1 1 1 1 1 1 1 0 1 1 1 0 1 0 0 2 2 2 2 2 2 2 1 2 2 3 3 3 1 0 0 0 2 2 1 2 2 4 4 2 2 4 2 1 1 2 1 2 2 1 0 0 1 1 0 0 0 0 1 1 0 0 0 1 0 0 0 2 2 4 1 1 1 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 6 5 61 1 1 8 5 4 1 1 1 1 8 8 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.69181 +2 -1 4 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 4 4 4 3 3 3 3 3 3 3 2 2 1 0 0 0 3 3 2 3 3 4 3 2 2 4 2 2 3 2 2 2 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 2 2 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 7 7 81 3 4 8 3 7 2 15 2 2 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 .74933 +2 -1 5 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 2 3 4 4 3 4 4 2 3 0 0 1 0 3 3 2 2 3 3 3 3 2 3 2 4 3 2 2 2 4 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 2 2 3 1 0 0 1 0 0 0 1 1 1 1 0 0 0 1 1 0 0 1 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 5 5 57 4 5 1 3 1 2 10 2 1 1 17 3 2 3 4 5 2 1 1 1 0 0 0 0 .61461 +1 -1 4 5 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 2 2 2 3 4 2 4 2 4 5 3 3 3 1 0 0 0 3 2 4 4 1 5 2 4 1 4 4 1 4 2 4 2 1 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 2 1 1 1 0 0 0 0 0 1 1 1 1 1 1 0 1 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 4 4 50 1 2 1 3 5 1 1 1 1 1 17 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.59242 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 5 4 4 3 4 4 4 3 4 1 0 0 0 4 4 2 4 2 4 1 4 2 4 4 1 1 2 4 2 2 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 3 3 3 1 0 0 0 0 0 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 58 4 5 1 3 3 1 2 -1 1 1 10 1 1 4 6 2 11 2 0 0 0 0 1 0 1.48883 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 4 4 4 1 3 3 3 3 3 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 1 0 0 3 4 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 24 3 4 11 6 6 1 4 -1 2 1 11 3 2 3 1 5 4 1 1 1 0 0 0 0 .58116 +10 1 6 10 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 1 1 0 0 1 0 0 1 1 0 0 0 0 3 3 3 4 5 4 4 1 4 4 3 2 2 1 0 0 0 4 4 3 3 3 3 3 3 3 3 5 1 1 1 2 1 1 0 1 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 0 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 3 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 6 5 61 2 3 8 6 7 1 1 1 1 8 16 2 1 4 6 1 -1 2 0 0 0 0 1 0 .36062 +1 -1 1 1 1 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 1 1 1 0 1 1 0 1 1 0 1 0 0 1 2 2 3 4 3 4 1 3 4 4 2 2 1 0 0 0 1 3 2 3 1 4 4 2 5 2 3 1 2 4 2 2 4 0 0 1 0 0 1 0 0 0 1 0 1 1 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 1 1 1 1 1 1 1 2 7 6 68 1 2 8 11 1 1 1 1 2 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.14878 +6 -1 1 8 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 1 1 1 1 1 1 0 1 1 1 1 0 0 2 3 3 2 5 5 3 5 5 2 4 1 1 0 1 0 0 4 4 3 5 1 2 2 3 1 5 2 1 1 1 5 4 1 1 0 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 2 2 1 1 0 1 0 1 0 1 1 1 1 0 1 1 1 1 1 0 1 1 1 1 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 20 2 3 5 9 3 1 1 6 1 5 1 4 2 1 4 5 11 2 0 0 0 0 1 0 .47876 +3 -1 1 2 0 0 1 1 1 1 1 1 0 1 0 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 2 2 3 3 3 3 2 2 3 3 1 1 1 0 0 0 3 1 2 5 1 4 2 2 1 5 4 2 1 2 4 3 1 1 0 0 1 1 0 0 0 0 1 0 1 1 0 0 0 0 0 2 1 4 1 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 1 0 0 1 0 1 1 0 0 2 9 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 4 4 53 2 3 1 9 3 1 4 3 1 1 7 4 2 4 2 2 -1 2 0 0 0 0 1 0 .61787 +3 -1 1 2 1 0 0 1 1 1 1 0 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 2 2 2 1 5 4 1 1 2 3 1 2 1 0 0 0 2 1 2 5 1 2 4 5 3 5 4 1 4 1 1 2 3 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 3 1 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 1 1 0 1 0 1 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 61 1 2 8 2 4 1 1 3 1 8 12 2 1 4 2 2 -1 2 0 0 0 0 1 0 .83207 +2 -1 1 1 0 0 0 1 1 1 0 1 1 1 1 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 0 1 2 2 3 1 2 2 2 1 3 3 4 2 1 0 0 0 1 2 2 3 3 3 4 2 3 3 4 1 4 3 3 3 3 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 2 2 4 1 1 1 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 0 0 0 0 0 0 2 4 4 47 1 2 2 2 4 1 1 2 1 2 15 1 1 3 1 4 2 1 0 0 1 0 0 0 .89449 +10 1 6 6 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 2 2 2 3 3 2 3 2 3 4 4 3 3 1 0 0 0 4 2 3 4 1 4 2 3 4 4 3 2 2 2 3 2 2 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 2 3 2 1 1 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 0 0 1 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 58 2 3 7 2 1 1 1 1 1 7 15 2 1 4 2 4 11 2 0 0 0 0 1 0 .88061 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 2 3 2 2 1 2 1 2 3 3 4 4 1 0 0 0 2 2 2 3 1 3 2 3 2 5 4 1 2 2 2 1 2 1 0 1 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 1 2 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 7 7 77 2 3 8 4 1 1 1 1 2 8 10 2 1 4 2 2 -1 2 0 0 0 0 1 0 2.23795 +2 -1 1 7 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 0 0 0 0 1 0 0 0 0 1 1 1 3 3 6 4 1 1 3 2 3 3 1 0 0 0 2 1 3 4 1 1 4 2 2 2 1 2 4 4 1 1 4 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 2 1 1 1 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 1 0 0 1 0 1 6 5 61 2 3 8 3 1 1 1 2 2 1 16 2 1 4 6 2 11 2 0 0 0 0 1 0 .68172 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 2 2 4 3 2 4 2 4 4 3 3 3 1 0 0 0 1 1 2 4 2 4 4 2 1 4 4 1 2 2 2 2 4 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 67 3 4 8 3 7 1 1 1 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .7606 +10 10 9 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 4 5 3 3 3 3 3 4 4 4 4 0 0 1 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 3 5 3 3 1 0 0 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 38 2 3 1 3 4 1 4 10 1 1 15 1 1 3 1 3 1 1 1 0 0 0 0 0 1.65123 +10 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 2 2 2 3 2 2 2 2 2 2 3 3 3 1 0 0 0 1 1 3 2 2 4 4 2 2 4 4 2 2 2 2 1 2 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 4 1 1 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 2 9 2 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 1 0 0 0 1 1 1 1 1 2 4 4 52 4 5 1 3 1 1 1 10 2 1 11 1 1 3 1 4 1 1 0 0 0 1 0 0 1.70814 +2 -1 2 6 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 3 2 2 3 3 4 4 3 3 2 3 2 3 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 4 3 3 2 3 4 1 0 0 1 0 1 0 0 0 0 1 0 1 0 0 0 0 0 3 3 4 4 1 1 0 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 3 3 40 2 3 4 10 5 2 10 2 1 4 17 4 2 4 2 2 -1 2 0 0 0 0 1 0 .27605 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 4 4 4 3 2 2 3 2 3 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 1 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 3 2 3 3 1 0 0 0 0 0 0 1 1 0 0 0 1 0 1 1 0 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 40 3 4 11 10 7 2 10 -1 2 1 16 2 1 4 2 4 11 2 0 0 0 0 1 0 .57873 +10 1 1 6 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 3 4 2 2 2 2 2 3 2 2 1 0 0 0 3 4 3 3 3 3 3 3 3 3 4 2 1 2 2 1 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 2 2 2 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 31 3 4 1 3 2 1 4 1 2 1 16 4 2 2 2 2 -1 2 0 0 0 0 1 0 1.68393 +10 2 10 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 4 2 1 2 4 4 2 3 3 2 3 2 3 0 0 1 0 3 2 4 4 3 3 2 3 4 3 4 3 3 3 3 3 3 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 4 3 3 3 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 42 4 6 12 10 1 2 10 2 1 12 17 2 1 4 7 1 -1 2 0 0 0 0 1 0 .49215 +2 -1 3 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 4 3 2 2 3 3 3 3 4 3 2 0 1 0 0 3 3 2 3 3 3 2 3 2 2 3 3 3 2 1 2 2 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 2 3 2 3 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 33 4 5 1 10 4 2 10 2 1 1 17 2 1 2 2 6 11 2 0 0 0 0 1 0 1.05091 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 2 2 2 2 1 1 1 3 3 3 3 1 0 0 0 2 2 3 2 2 3 2 3 3 2 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 6 3 3 3 1 1 0 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 34 2 3 1 3 5 2 9 2 1 1 17 4 2 3 1 3 1 1 1 0 0 0 0 0 .67523 +10 2 4 4 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 2 4 2 3 2 2 2 2 2 2 1 0 0 0 3 4 2 2 3 3 3 3 2 3 2 3 1 1 2 3 3 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 2 3 2 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 2 2 28 1 2 2 3 5 2 13 2 1 2 8 4 2 2 2 2 -1 2 0 0 0 0 1 0 .47103 +2 -1 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 2 2 2 3 4 4 5 1 4 3 3 3 3 1 0 0 0 1 2 2 4 2 4 2 2 2 2 2 1 2 1 4 1 1 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 2 2 5 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 9 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 70 3 4 8 6 7 1 1 2 1 8 6 3 2 4 2 2 -1 2 0 0 0 0 1 0 .31481 +4 -1 1 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 2 3 3 4 2 4 4 2 2 4 4 2 2 1 0 0 0 3 4 4 4 1 4 4 4 3 4 4 2 2 2 2 2 1 0 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 3 1 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 7 6 68 3 4 8 6 7 1 1 4 1 8 4 3 2 4 6 1 -1 2 0 0 0 0 1 0 .39895 +4 -1 1 1 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 2 2 2 2 3 2 2 2 2 3 2 2 1 0 0 0 3 2 2 2 2 2 4 2 4 2 2 4 3 4 2 2 4 0 0 1 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 2 2 3 1 1 1 0 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 2 9 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 46 1 2 2 9 1 1 1 4 2 1 5 1 1 3 2 4 1 1 0 0 0 1 0 0 .74151 +4 -1 6 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 3 5 3 3 3 3 4 4 3 4 1 0 0 0 4 2 4 3 5 2 3 4 5 2 4 2 2 3 4 4 4 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 3 3 2 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 81 3 4 8 9 7 1 1 4 1 8 11 2 1 4 6 1 -1 2 0 0 0 0 1 0 .56699 +9 -1 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 4 3 5 3 4 3 4 4 4 1 0 0 0 4 4 3 6 3 6 4 6 6 3 3 2 2 3 2 5 4 0 1 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 0 2 4 2 2 1 0 0 1 0 0 0 1 1 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 8 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 1 1 19 3 4 1 7 1 1 1 -1 2 1 11 1 1 1 4 4 11 2 0 0 0 0 1 0 2.05512 +1 -1 2 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 1 0 0 2 3 3 3 4 2 3 2 2 3 4 3 3 1 0 0 0 3 2 3 5 1 4 2 3 1 5 3 1 2 1 3 1 2 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 2 2 2 1 1 1 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 69 1 2 4 2 2 1 1 1 1 4 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 .62067 +10 1 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 3 3 3 2 3 1 2 4 4 2 2 1 0 0 0 2 4 3 3 3 3 3 3 3 3 2 1 2 2 2 2 2 1 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 2 3 1 1 1 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 48 2 3 2 7 3 1 1 1 1 2 13 2 1 3 1 4 2 1 0 0 1 1 0 0 1.3116 +10 3 7 6 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 0 1 1 1 0 0 0 0 1 1 0 0 0 2 4 4 4 5 5 5 4 5 4 4 1 2 0 1 0 0 3 1 5 1 1 5 1 4 4 5 5 1 1 1 5 1 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 2 3 1 1 0 0 1 0 0 0 1 1 1 1 1 1 1 1 1 0 0 1 1 0 1 1 0 0 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 32 4 5 10 9 2 1 1 3 1 10 7 4 2 3 1 4 2 1 0 0 1 1 0 0 .56251 +2 -1 1 10 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 2 3 3 3 4 5 5 1 5 3 3 2 3 1 0 0 0 3 2 5 5 1 5 1 5 1 5 5 1 1 2 2 1 1 1 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 3 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 1 0 0 2 7 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 25 3 4 2 9 3 1 1 2 2 1 9 4 2 2 2 2 -1 2 0 0 0 0 1 0 .63793 +10 2 8 10 0 0 1 1 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 2 1 1 2 5 4 2 1 1 4 4 2 2 1 0 0 0 2 1 1 4 1 2 1 1 1 5 3 1 1 1 4 1 2 1 0 0 1 0 1 0 0 0 1 0 0 1 0 1 0 0 0 1 1 1 2 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 1 1 1 0 0 0 0 0 1 7 6 73 1 2 8 11 4 1 1 2 1 8 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 .62692 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 1 0 0 0 1 0 0 0 0 2 1 1 1 4 1 5 1 1 4 4 3 4 1 0 0 0 2 2 2 3 1 1 5 2 2 4 4 2 1 1 2 1 3 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 4 1 5 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 7 6 70 1 2 8 11 2 1 1 1 1 8 10 2 1 4 2 2 -1 2 0 0 0 0 1 0 .62692 +10 2 1 1 1 0 1 1 1 1 1 0 0 0 0 1 0 0 0 1 1 0 1 1 1 1 0 0 0 0 1 0 0 0 1 2 2 4 5 5 5 2 4 3 3 3 2 1 0 0 0 4 2 5 5 1 5 1 3 1 5 5 1 1 1 4 3 1 0 0 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 1 1 3 1 1 0 0 0 1 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 72 2 3 8 2 1 1 1 2 2 1 12 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.04549 +10 10 4 6 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 1 0 0 0 0 1 0 0 0 3 3 2 3 4 4 3 2 2 2 3 2 2 1 0 0 0 4 2 2 3 1 4 1 2 2 3 3 1 1 3 1 2 3 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 1 0 0 2 2 2 3 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 3 3 35 2 3 4 2 5 1 1 10 2 1 16 1 1 2 2 2 -1 2 0 0 0 0 1 0 .92752 +6 -1 1 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 2 2 3 5 5 1 5 4 3 2 2 1 0 0 0 2 1 2 4 1 2 2 2 1 5 4 2 1 2 4 2 2 0 0 0 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 2 2 1 2 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 66 4 6 8 2 9 1 1 6 1 8 16 3 2 4 6 2 11 2 0 0 0 0 1 0 .64943 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 3 3 3 6 3 2 2 4 3 2 2 1 0 0 0 3 4 2 5 1 5 1 3 6 4 3 2 2 2 2 1 2 0 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 67 3 4 8 6 7 1 1 2 2 1 16 2 1 4 2 3 11 2 0 0 0 0 1 0 .27646 +2 -1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 2 2 2 3 3 1 2 1 3 2 2 2 2 1 0 0 0 2 2 1 3 2 3 4 1 4 1 3 1 2 1 1 3 4 0 0 1 1 0 1 0 0 0 1 0 1 0 0 1 0 0 0 2 2 3 1 1 0 0 1 0 0 0 1 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 48 2 3 1 6 1 1 1 2 1 1 9 4 2 4 4 2 11 2 0 0 0 0 1 0 .54608 +11 3 6 7 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 3 3 3 4 5 3 2 3 3 3 1 0 0 0 4 2 1 5 1 5 3 3 3 3 3 1 1 1 2 3 3 1 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 2 2 3 1 1 1 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 1 0 0 1 0 2 3 3 41 2 3 1 3 4 2 10 3 1 1 16 4 2 4 4 1 -1 2 0 0 0 0 1 0 .57945 +11 11 1 6 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 2 2 2 2 3 2 4 1 3 4 3 2 2 1 0 0 0 4 3 3 5 1 5 5 4 3 3 4 2 1 2 2 2 2 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 2 2 34 2 3 11 3 5 1 1 11 2 1 16 6 -1 3 1 3 1 1 0 1 0 0 0 0 .97605 +11 11 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 0 0 2 2 2 2 2 3 2 1 2 2 2 2 2 1 0 0 0 4 2 2 2 3 2 4 2 3 2 2 1 1 2 2 3 3 1 0 0 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 3 3 3 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 3 3 41 2 3 1 3 5 2 9 11 1 1 16 4 2 4 2 2 -1 2 0 0 0 0 1 0 .47955 +3 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 2 4 2 2 2 2 3 3 3 3 1 0 0 0 3 4 2 2 3 4 3 2 3 2 2 2 3 2 3 2 3 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 3 3 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 7 7 75 3 4 8 3 1 2 9 3 1 8 16 5 2 4 6 1 -1 2 0 0 0 0 1 0 .35859 +9 -1 10 10 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 1 1 1 1 1 1 0 0 0 1 1 1 0 0 0 2 2 2 3 4 6 2 3 2 3 3 2 2 1 0 0 0 4 2 2 5 1 4 1 2 2 5 4 1 1 1 1 6 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 6 1 1 6 1 1 0 1 0 0 0 1 1 1 1 1 1 0 1 1 0 0 1 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 34 2 3 2 10 2 1 1 -1 2 1 16 1 1 3 1 4 2 1 1 0 0 0 0 0 .9903 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 2 3 3 2 4 2 3 1 1 2 2 3 3 1 0 0 0 2 2 1 2 2 4 4 2 4 3 4 1 1 1 2 2 3 0 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 0 0 2 2 3 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 64 2 3 8 10 3 1 1 1 2 1 11 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.11686 +2 -1 1 1 0 1 1 1 1 1 1 0 0 0 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 2 2 3 1 4 3 1 1 2 3 2 2 1 0 0 0 1 1 2 4 1 4 4 2 4 3 4 1 3 1 2 4 3 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 2 5 1 1 1 1 1 1 1 0 1 1 1 1 0 1 1 1 1 0 0 1 1 1 1 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 44 1 2 1 10 1 1 1 2 2 1 11 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.63154 +10 6 1 10 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 1 0 0 0 0 0 0 0 2 3 2 4 4 2 3 1 1 4 4 4 4 1 0 0 0 2 1 1 3 1 3 4 1 3 5 5 1 1 1 4 3 2 0 0 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 3 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 1 1 0 1 1 1 7 6 68 3 4 9 7 4 1 1 6 2 2 6 3 2 4 2 2 -1 2 0 0 0 0 1 0 .82697 +10 1 5 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 2 3 4 2 4 1 4 4 4 4 3 1 0 0 0 3 4 3 3 2 3 3 3 3 3 4 2 2 2 3 3 2 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 3 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 7 82 3 4 8 7 7 1 1 1 1 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.37545 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 2 2 1 2 2 2 1 2 3 2 2 2 0 1 0 0 1 3 2 2 2 2 4 2 4 3 2 2 2 1 1 3 2 1 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 2 2 2 2 1 1 1 1 0 1 0 1 1 1 1 0 1 1 1 1 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 1 1 18 2 3 1 1 1 1 1 1 1 1 11 4 2 2 2 2 -1 2 0 0 0 0 1 0 2.87703 +10 10 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 4 3 3 4 5 5 4 3 3 4 4 2 2 1 0 0 0 4 2 4 5 1 5 2 5 1 5 5 1 3 3 5 5 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 6 1 1 1 1 1 1 0 0 1 1 1 1 0 1 1 1 0 0 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 21 2 3 5 1 3 1 1 10 2 8 16 2 1 1 4 3 11 2 0 0 0 0 1 0 2.87552 +10 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 4 3 3 3 3 3 3 3 3 3 1 0 0 0 3 4 2 6 2 5 2 6 3 3 2 2 2 1 2 2 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 2 2 2 1 1 0 0 0 0 0 1 1 1 1 0 1 1 1 0 0 0 0 1 0 0 0 0 0 2 9 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 43 3 4 1 1 2 1 1 2 1 1 10 1 1 3 1 4 2 1 0 0 0 1 0 0 4.144 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 3 2 2 2 2 2 3 3 2 2 1 0 0 0 2 2 2 4 2 2 4 2 2 2 5 2 2 1 2 1 1 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 2 2 1 2 1 1 1 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 31 2 3 1 1 3 1 1 2 1 1 13 4 2 2 2 2 -1 2 0 0 0 0 1 0 3.68173 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 1 1 2 2 1 2 2 2 1 2 1 0 0 0 2 2 2 3 2 2 4 2 3 3 4 2 2 1 4 4 2 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 3 2 3 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 4 4 47 4 5 7 7 2 1 1 2 1 7 12 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.61117 +6 -1 1 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 2 3 2 3 2 3 3 2 2 3 3 2 3 1 0 0 0 3 1 3 3 1 4 2 3 2 5 3 1 1 2 3 2 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 6 5 64 3 4 8 7 3 1 1 6 1 8 11 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.39088 +10 2 1 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 3 3 5 2 2 4 4 3 3 1 0 0 0 3 4 2 4 1 4 2 4 2 4 5 2 1 2 3 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 1 1 4 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 4 4 49 2 3 1 7 4 1 1 2 1 1 15 1 1 4 6 4 11 2 0 0 0 0 1 0 1.51999 +2 -1 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 3 3 3 3 4 2 3 3 3 3 2 1 0 0 0 1 1 2 3 1 2 3 3 4 2 3 2 4 2 4 2 3 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 1 2 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 7 7 92 3 4 8 7 7 1 1 2 1 8 3 2 1 4 6 1 -1 2 0 0 0 0 1 0 .95123 +1 -1 1 1 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 4 3 3 4 5 3 2 2 3 4 4 4 4 1 0 0 0 1 4 3 3 3 3 3 3 3 3 5 1 1 1 5 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 3 1 1 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 4 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 65 4 6 8 7 7 1 1 1 1 8 7 4 2 4 6 1 -1 2 0 0 0 0 1 0 1.09545 +9 -1 8 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 3 4 4 2 2 4 5 4 5 4 2 4 4 0 0 0 1 4 4 2 5 1 5 1 1 1 3 5 1 1 4 5 2 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 5 5 5 5 1 1 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 1 1 18 2 3 1 2 6 1 1 -1 1 1 16 3 2 1 4 2 11 2 0 0 0 0 1 0 1.41597 +1 -1 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 1 1 1 1 0 1 0 0 1 3 2 4 2 4 4 1 2 3 3 3 1 1 0 0 0 2 1 1 1 1 1 5 1 5 2 4 1 3 4 3 4 4 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 2 1 5 1 1 0 0 0 0 0 0 1 1 1 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 73 2 3 8 2 7 1 1 1 1 8 10 2 1 4 2 2 -1 2 0 0 0 0 1 0 .64833 +8 -1 1 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 2 2 3 3 3 3 2 2 3 3 2 2 1 0 0 0 3 4 3 4 1 4 3 3 2 3 3 2 2 1 3 3 2 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 2 1 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 48 3 4 2 2 1 1 1 8 2 1 11 1 1 4 2 5 11 2 0 0 0 0 1 0 1.13697 +6 -1 1 1 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 2 2 2 4 1 5 5 1 4 1 3 2 2 1 0 0 0 1 2 2 3 1 4 3 3 1 5 5 1 1 1 4 4 1 0 1 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 1 0 1 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 64 2 3 8 2 1 2 18 6 2 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 .36622 +1 -1 3 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 4 3 4 3 4 2 3 4 2 3 3 4 3 1 0 0 0 3 3 2 3 2 5 2 2 3 3 4 2 2 2 2 4 3 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 2 2 2 2 1 1 0 1 1 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 3 3 44 1 2 1 7 5 1 1 1 1 1 15 2 1 3 1 4 2 1 1 0 0 0 0 0 2.16451 +10 10 2 6 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 3 3 2 3 4 3 4 2 4 2 3 2 3 1 0 0 0 3 2 3 4 2 3 4 3 2 4 3 2 2 4 6 2 2 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 2 2 2 2 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 9 2 0 1 1 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 1 1 0 1 1 2 7 7 85 2 3 4 7 9 1 1 10 1 4 10 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.86015 +1 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 5 5 4 2 2 3 4 2 4 1 0 0 0 2 2 1 2 1 4 2 1 4 4 5 1 1 1 2 1 1 0 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 8 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 -1 0 0 0 0 0 1 1 1 1 5 5 58 2 3 1 8 6 1 1 1 1 1 12 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.16431 +10 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 2 2 2 2 3 2 3 3 4 4 4 3 2 1 0 0 0 3 2 3 3 2 3 4 3 3 3 3 2 2 2 2 3 2 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 2 2 3 3 1 1 0 0 0 1 0 1 1 1 1 0 0 1 1 1 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 18 3 4 1 8 3 1 1 10 1 1 16 2 1 1 4 2 11 2 0 0 0 0 1 0 1.46938 +10 4 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 3 3 4 2 4 4 4 3 2 4 4 4 1 0 0 0 3 4 2 5 1 4 1 4 1 4 4 1 1 1 4 1 1 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 2 3 1 1 0 0 1 0 0 0 1 1 1 0 0 1 1 1 0 1 0 0 0 0 1 0 1 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 60 2 3 8 6 1 1 1 4 1 8 3 2 1 4 4 1 -1 2 0 0 0 0 1 0 .36062 +10 10 1 5 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 2 2 4 3 2 3 3 3 1 2 2 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 2 1 1 3 2 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 6 6 6 6 0 0 0 1 1 0 0 1 0 1 1 0 1 1 0 0 1 0 1 1 1 1 1 1 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 19 2 3 11 6 2 1 1 10 1 11 16 5 2 3 3 2 1 1 1 0 0 0 0 0 .40598 +2 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 2 4 4 1 3 5 5 4 4 2 2 0 1 0 0 2 2 3 3 2 3 3 3 3 2 4 4 4 5 1 4 4 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 5 1 4 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 -1 4 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 48 4 6 7 6 7 1 1 2 1 7 2 4 2 4 6 1 -1 2 0 0 0 0 1 0 .47937 +10 10 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 1 0 1 1 0 0 0 1 0 0 0 0 3 3 3 3 3 3 3 3 3 2 3 2 3 1 0 0 0 4 2 3 3 2 3 3 2 3 3 3 1 3 3 1 4 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 2 2 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 -1 0 0 0 0 0 1 1 1 2 4 4 49 4 5 3 6 1 1 1 10 1 3 3 4 2 4 4 1 -1 2 0 0 0 0 1 0 .39004 +1 -1 1 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 2 2 2 3 3 4 1 3 4 4 2 2 1 0 0 0 2 2 4 2 1 2 4 4 2 2 4 1 4 4 4 2 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 2 1 2 1 1 0 0 0 0 0 1 1 1 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 41 1 2 1 11 4 2 9 1 1 1 13 1 1 3 6 3 1 1 0 0 0 1 0 0 .59953 +1 -1 1 1 1 0 1 1 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 0 1 1 1 0 0 1 0 1 0 0 2 2 2 2 1 1 2 1 2 2 3 1 5 1 0 0 0 3 2 1 1 2 4 5 1 3 4 3 1 4 2 1 1 4 0 1 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 2 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 87 1 2 8 11 4 1 1 1 1 8 16 2 1 4 2 4 11 2 0 0 0 0 1 0 1.09183 +10 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 4 3 3 4 2 4 4 4 4 4 4 4 4 0 0 1 0 4 4 4 4 2 4 2 5 2 5 4 2 2 2 2 2 2 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 4 4 2 1 0 0 0 0 1 0 1 1 1 1 0 0 1 0 1 0 0 0 0 0 0 1 0 0 1 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 20 3 4 7 11 7 1 1 10 2 1 16 3 2 1 4 3 11 2 0 0 0 0 1 0 .88403 +4 -1 4 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 3 4 3 3 3 3 3 4 4 2 2 1 0 0 0 2 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 4 4 53 2 3 1 6 2 1 1 4 1 1 12 1 1 4 2 2 -1 2 0 0 0 0 1 0 .82978 +10 10 2 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 1 1 5 5 1 1 1 1 1 4 4 1 0 0 0 4 2 4 5 1 2 4 3 5 4 5 1 1 3 1 3 5 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 5 5 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 9 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 1 1 1 2 4 4 0 2 3 1 6 5 1 1 10 1 1 17 1 1 4 4 2 11 2 0 0 0 0 1 0 .57863 +2 -1 2 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 3 3 5 4 3 2 3 3 2 2 1 0 0 0 3 4 3 3 3 3 3 3 3 3 4 1 1 3 3 3 1 1 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 52 2 3 1 6 1 1 1 2 2 1 12 1 1 4 2 3 11 2 0 0 0 0 1 0 .57863 +1 -1 1 9 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 1 0 0 2 2 2 3 2 2 2 2 2 2 3 2 2 1 0 0 0 2 2 2 2 2 3 3 2 2 2 3 2 2 2 3 2 4 0 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 3 2 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 2 9 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 5 5 55 1 2 1 10 4 1 1 1 2 1 11 1 1 4 2 3 11 2 0 0 0 0 1 0 1.82521 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 3 4 3 4 3 4 4 4 4 4 0 0 1 0 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 1 0 0 1 1 1 0 1 1 1 1 0 1 1 1 1 0 0 0 1 1 1 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 20 4 5 7 6 6 1 1 -1 2 2 12 2 1 1 4 3 11 2 0 0 0 0 1 0 .47522 +10 10 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 0 0 0 0 0 0 0 0 0 4 3 3 2 4 3 5 2 2 4 4 4 4 1 0 0 0 3 2 2 4 1 4 1 3 2 4 3 2 2 1 2 2 2 0 1 0 1 0 1 0 0 0 0 1 0 1 0 1 0 0 0 2 1 3 2 1 0 0 1 0 0 0 1 1 1 1 0 1 1 0 0 0 0 1 1 0 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 6 5 64 2 3 8 6 6 1 1 10 2 8 5 2 1 4 2 2 -1 2 0 0 0 0 1 0 .42422 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 1 1 1 1 1 0 0 0 0 2 2 2 3 4 2 1 1 2 3 3 4 4 1 0 0 0 2 1 1 5 1 2 4 5 3 2 2 1 2 1 2 4 3 1 0 0 1 0 1 0 0 0 1 0 0 1 0 1 0 0 0 2 2 2 1 1 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 65 3 4 8 6 7 1 1 2 1 8 5 2 1 4 2 6 11 2 0 0 0 0 1 0 .32522 +10 2 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 1 1 0 0 0 3 3 3 3 4 2 4 1 2 2 3 3 3 1 0 0 0 3 2 2 4 1 4 4 2 2 4 5 1 1 4 2 2 2 0 1 1 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 2 2 2 2 1 1 0 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 1 0 0 1 9 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 5 5 56 2 3 1 6 4 1 1 2 1 1 17 1 1 4 2 3 11 2 0 0 0 0 1 0 .61991 +11 11 2 3 1 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 1 0 1 1 1 1 0 0 1 1 0 0 0 0 1 2 2 3 2 4 4 1 1 3 3 2 2 1 0 0 0 4 4 5 5 1 4 2 5 1 3 3 1 3 3 2 2 2 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 2 3 1 2 1 1 1 1 0 0 0 1 1 1 1 0 1 0 0 0 1 0 0 1 0 1 0 0 0 2 9 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 5 5 55 1 1 1 2 5 1 1 11 1 1 13 2 1 4 4 1 -1 2 0 0 0 0 1 0 1.35148 +10 10 6 6 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 0 1 1 1 1 0 0 0 3 3 3 3 3 3 2 1 3 2 3 2 3 1 0 0 0 4 4 3 3 3 3 3 3 3 3 4 2 2 1 2 3 2 0 0 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 2 2 2 4 1 1 1 1 1 1 0 1 1 1 1 1 0 1 1 1 1 0 0 1 1 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 2 2 34 3 4 4 2 1 1 1 10 1 4 9 3 2 2 2 2 -1 2 0 0 0 0 1 0 1.46979 +1 -1 1 6 0 0 0 1 1 1 1 0 0 0 1 0 0 0 0 1 0 1 1 1 1 1 0 0 0 1 1 0 0 0 2 2 3 2 4 3 4 2 2 1 3 1 2 1 0 0 0 3 2 3 4 1 2 4 3 2 4 3 2 1 2 4 2 1 1 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 4 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 1 0 0 1 0 1 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 2 1 1 20 1 2 1 7 1 2 7 1 2 1 13 1 1 1 4 4 11 2 0 0 0 0 1 0 1.26348 +10 10 1 1 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 1 0 0 1 0 0 0 0 3 2 3 3 2 2 3 2 2 2 3 1 1 1 0 0 0 4 2 2 4 1 3 3 3 4 3 3 1 1 2 3 1 2 0 1 1 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 1 2 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 3 3 41 1 2 1 5 3 1 1 10 1 1 13 1 1 3 5 4 2 1 0 0 0 1 0 0 1.82016 +9 -1 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 1 0 0 0 0 1 0 0 0 0 0 4 3 3 3 3 3 1 3 3 2 3 2 2 1 0 0 0 4 4 3 5 1 5 1 4 1 5 4 1 1 1 4 1 1 1 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 1 3 3 1 1 0 0 0 0 0 1 1 1 1 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 20 3 4 5 5 3 1 1 -1 2 1 15 7 -1 1 4 4 11 2 0 0 0 0 1 0 1.63013 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 2 3 3 2 1 1 2 4 4 4 4 1 0 0 0 2 2 2 2 1 5 1 4 3 5 2 1 1 1 3 2 1 1 1 0 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 1 1 1 1 0 0 0 1 1 0 1 1 1 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 1 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 65 3 4 2 5 6 1 1 1 1 2 3 2 1 4 4 1 -1 2 0 0 0 0 1 0 .70042 +2 -1 1 7 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 0 1 0 0 0 1 0 0 0 0 1 1 1 4 4 4 4 2 2 4 4 3 2 1 0 0 0 3 2 5 4 1 3 2 4 1 5 3 1 2 2 5 2 2 0 0 0 1 0 1 0 0 0 0 1 0 1 0 1 0 0 0 4 2 1 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 1 0 1 0 0 0 2 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 1 1 1 0 0 0 0 0 1 7 6 70 1 2 8 7 5 1 1 2 1 8 12 2 1 4 2 3 11 2 0 0 0 0 1 0 1.01546 +1 -1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 1 0 0 0 1 0 1 0 0 2 2 2 2 2 2 4 2 2 3 4 2 3 1 0 0 0 3 2 2 3 2 2 3 2 3 2 3 2 2 2 2 2 2 0 1 1 1 0 0 0 0 0 0 1 0 1 0 1 0 0 0 2 2 2 2 1 0 0 1 1 1 0 1 1 1 1 1 1 0 1 1 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 45 1 2 1 7 4 1 1 1 2 1 13 1 1 3 1 5 3 1 0 0 1 1 0 0 2.19851 +1 -1 2 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 2 3 3 2 2 3 3 3 3 1 0 0 0 3 4 3 3 3 3 3 3 3 3 2 2 3 3 4 4 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 2 2 2 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 46 3 4 1 3 7 2 13 1 1 1 10 4 2 4 6 3 11 2 0 0 0 0 1 0 .79311 +10 2 1 11 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 2 1 3 2 3 2 2 1 2 1 1 0 0 0 1 4 3 3 3 3 3 3 3 3 3 2 3 1 3 3 1 0 1 0 0 1 1 0 0 0 1 0 1 0 0 0 0 0 0 3 3 3 2 1 0 0 1 0 0 0 1 1 1 1 1 0 0 1 1 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 3 3 37 2 3 11 3 7 2 16 2 2 1 6 3 2 3 1 5 4 1 0 1 1 1 0 0 .45375 +2 -1 4 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 3 3 3 3 3 2 2 2 2 1 0 0 0 4 4 6 6 6 3 6 6 6 6 2 2 2 2 2 2 2 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 3 3 4 1 1 0 1 0 0 0 0 1 0 0 0 1 1 1 0 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 1 1 18 3 4 5 3 1 2 14 2 2 2 16 3 2 1 4 3 11 2 0 0 0 0 1 0 .36429 +10 10 11 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 4 3 3 5 2 6 2 2 2 2 2 3 2 0 0 1 0 4 4 6 6 6 6 6 6 6 6 2 2 2 2 2 6 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 6 6 6 2 1 1 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 2 1 1 23 3 4 5 3 4 2 13 10 2 1 16 4 2 1 4 5 11 2 0 0 0 0 1 0 .50538 +10 10 6 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 4 4 4 2 4 6 6 3 4 4 4 4 1 0 0 0 4 4 6 6 6 6 6 6 6 6 2 1 1 1 4 2 4 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 3 2 2 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 4 4 54 3 4 1 3 2 2 15 10 1 1 17 1 1 3 1 4 2 1 0 0 1 1 0 0 1.03295 +10 10 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 2 3 3 6 6 6 3 3 3 3 1 0 0 0 4 4 6 6 6 6 6 6 6 6 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 6 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 70 2 3 8 3 1 2 15 10 2 1 16 3 2 3 3 5 2 1 0 0 1 1 0 0 .39455 +10 10 8 8 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 1 0 1 1 0 1 0 0 1 1 1 0 0 0 2 3 3 3 2 3 3 4 3 2 2 3 3 1 0 0 0 4 4 6 3 6 2 6 2 6 2 6 1 2 2 3 5 2 0 0 0 1 1 1 0 0 0 1 0 0 1 0 0 0 0 0 3 3 3 4 1 1 1 0 0 0 0 1 1 1 1 0 1 1 1 0 1 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 23 2 3 5 11 3 1 4 10 1 5 1 4 2 1 4 4 11 2 0 0 0 0 1 0 .49588 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 2 2 3 2 2 2 1 2 3 3 2 2 1 0 0 0 1 1 2 4 1 3 4 2 2 4 5 1 1 1 4 4 1 0 0 0 1 1 1 0 0 0 1 0 0 1 1 0 0 0 0 1 2 5 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 7 86 4 5 8 11 7 1 1 2 1 8 4 3 2 4 6 1 -1 2 0 0 0 0 1 0 .72481 +11 11 3 3 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 0 0 0 0 0 0 0 0 2 2 2 3 1 2 4 1 2 2 2 2 2 1 0 0 0 4 1 3 4 1 5 3 2 1 3 5 1 1 1 1 1 3 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 5 4 5 4 1 1 0 0 0 0 0 1 1 1 1 0 1 0 1 1 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 47 2 3 1 11 3 1 1 11 1 1 17 4 2 4 4 3 11 2 0 0 0 0 1 0 1.08858 +2 -1 7 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 4 5 5 5 1 6 3 4 3 4 0 1 0 0 4 2 2 5 2 2 4 1 4 4 4 1 1 1 4 2 4 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 2 2 2 2 1 1 1 1 0 0 0 1 1 1 1 0 1 1 1 0 0 0 0 1 0 1 0 0 0 1 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 20 2 3 5 11 4 1 1 2 1 5 7 4 2 1 4 3 11 2 0 0 0 0 1 0 .95204 +2 -1 2 9 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 3 4 4 4 5 6 2 4 4 2 2 0 1 0 0 4 1 2 4 1 4 2 2 2 2 5 1 1 1 5 2 5 0 0 1 1 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 1 1 2 1 1 1 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 1 0 1 0 0 0 2 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 21 2 3 5 11 8 1 1 2 1 5 7 4 2 1 4 2 11 2 0 0 0 0 1 0 .80929 +1 -1 9 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 3 3 3 5 2 5 1 6 4 4 3 3 0 0 1 0 4 2 2 3 2 2 2 2 3 5 4 2 1 1 4 2 2 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 1 1 1 4 0 1 1 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 1 0 1 0 0 0 -1 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 19 2 3 5 11 8 1 1 1 1 5 16 4 2 1 4 5 11 2 0 0 0 0 1 0 .49588 +10 10 8 8 0 1 0 1 1 1 0 0 0 0 0 1 0 0 0 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 2 3 3 3 2 3 4 3 2 3 3 2 2 0 1 0 0 4 4 3 6 6 6 6 6 6 6 3 2 2 1 4 6 4 0 1 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 2 4 2 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 0 1 0 1 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 24 2 3 1 8 4 2 7 10 1 1 9 4 2 1 4 1 -1 2 0 0 0 0 1 0 .60458 +2 -1 4 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 2 2 3 3 2 2 1 2 1 3 2 2 0 1 0 0 3 3 2 3 2 5 3 3 3 4 4 2 1 1 3 3 3 0 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 4 2 3 1 0 1 0 0 0 0 0 1 1 1 1 0 1 1 1 0 0 0 0 1 1 0 0 0 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 19 2 3 5 8 8 1 1 2 2 2 16 7 -1 3 4 3 1 1 0 0 0 1 0 0 .59733 +10 9 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 5 5 5 3 3 3 3 3 4 4 4 4 0 0 1 0 4 4 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 3 3 3 3 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 28 2 3 2 3 1 2 10 9 2 1 16 2 1 2 2 4 11 2 0 0 0 0 1 0 .41625 +9 -1 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 2 5 6 6 6 6 6 3 2 3 3 1 0 0 0 3 4 6 6 6 6 6 6 6 6 3 3 3 3 3 3 3 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 3 3 3 3 1 1 0 1 0 0 0 1 1 1 1 1 0 1 1 1 0 0 1 1 1 1 1 0 0 1 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 2 2 27 4 5 1 3 3 1 4 -1 1 1 11 4 2 3 1 3 1 1 1 0 0 0 0 0 1.9485 +2 -1 1 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 1 2 2 2 1 1 2 4 2 2 1 2 1 0 0 0 3 2 2 1 1 3 2 5 2 3 2 1 3 2 2 2 2 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 2 3 1 2 1 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 6 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 1 0 0 1 1 1 1 1 1 18 4 5 5 3 3 2 5 2 2 1 16 2 1 1 4 3 11 2 0 0 0 0 1 0 .33183 +1 -1 5 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 4 4 4 4 4 4 3 3 3 3 1 0 0 0 3 4 6 4 6 6 4 4 6 4 4 4 6 4 6 4 4 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 6 6 6 6 1 1 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 19 2 3 5 3 4 2 10 1 2 1 17 2 1 3 4 4 1 1 0 0 0 1 0 0 .38013 +10 3 6 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 2 3 4 3 3 3 3 3 3 3 3 1 0 0 0 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 2 2 2 3 1 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 40 2 3 1 3 4 2 10 3 1 1 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 .58278 +2 -1 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 3 2 2 4 2 5 2 2 4 4 3 3 1 0 0 0 1 2 2 3 1 5 3 2 3 5 3 1 2 1 5 3 1 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 1 2 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 4 4 51 3 4 1 4 6 1 1 2 1 1 12 1 1 3 1 4 2 1 0 0 0 1 0 0 2.5962 +2 -1 7 8 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 3 3 2 4 3 2 4 2 2 3 3 2 2 1 0 0 0 3 2 3 5 1 4 1 4 2 5 5 1 1 1 4 2 1 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 1 4 1 0 0 1 0 0 0 1 1 1 1 0 1 1 1 1 0 0 0 1 1 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 43 4 5 1 4 1 1 1 2 1 1 9 1 1 3 1 4 2 1 0 0 0 1 0 0 2.33094 +10 10 2 9 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 0 0 0 1 1 1 0 0 2 2 3 4 3 4 4 1 2 3 3 2 2 1 0 0 0 4 2 3 3 1 5 4 2 3 2 4 1 1 1 3 2 2 0 0 1 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 2 2 1 4 1 1 0 1 0 0 0 1 1 1 1 0 0 1 1 0 1 0 0 0 0 1 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 44 2 3 1 4 4 1 1 10 1 1 13 1 1 4 2 3 11 2 0 0 0 0 1 0 1.84666 +10 10 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 3 3 5 3 3 2 4 3 3 3 3 1 0 0 0 3 4 3 3 1 5 2 3 1 5 5 1 1 1 5 3 1 0 0 0 1 0 1 0 0 0 0 1 0 1 0 1 0 0 0 1 1 1 2 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 68 3 4 2 10 6 1 1 10 1 2 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .77171 +10 10 6 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 4 4 4 3 5 5 5 5 5 4 4 4 4 1 0 0 0 4 2 5 5 1 5 5 5 1 5 3 1 1 1 1 1 1 0 0 0 1 0 1 1 0 0 1 1 0 0 0 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 46 3 4 1 10 6 1 1 10 1 1 13 2 1 4 2 4 11 2 0 0 0 0 1 0 1.31432 +10 10 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 1 1 0 1 1 0 1 0 0 3 2 2 3 4 3 5 1 1 4 3 4 4 1 0 0 0 3 2 1 4 1 4 1 2 3 5 3 1 1 1 1 1 1 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 1 1 1 0 0 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 -1 0 0 0 0 0 1 1 1 2 5 5 57 2 3 8 10 6 1 1 10 2 8 17 2 1 4 2 4 11 2 0 0 0 0 1 0 1.08889 +9 -1 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 4 3 3 4 1 3 4 4 3 3 1 0 0 0 4 4 5 5 1 5 5 5 1 5 5 1 1 1 3 1 1 1 1 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 0 1 5 1 5 1 0 0 0 0 0 0 0 1 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 44 3 4 1 10 1 1 1 -1 1 1 17 1 1 4 2 3 11 2 0 0 0 0 1 0 1.82505 +1 -1 1 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 1 0 0 2 3 3 2 2 4 4 2 4 3 3 3 4 1 0 0 0 3 2 3 4 1 4 4 2 3 4 4 1 3 1 2 1 4 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 7 7 78 1 2 8 2 4 1 1 1 1 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 2.02135 +1 -1 2 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 2 2 3 2 1 3 2 2 2 2 1 0 0 0 3 4 3 3 3 3 3 3 3 3 2 1 1 1 2 2 2 0 0 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 2 2 3 1 1 1 0 1 0 0 0 1 1 1 1 0 0 0 0 1 0 0 1 1 0 1 0 1 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 1 1 20 3 4 5 2 3 1 1 1 2 1 16 1 1 1 4 5 11 2 0 0 0 0 1 0 .99009 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 4 3 3 3 3 3 3 3 3 3 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 3 3 3 3 1 1 0 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 0 1 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 33 1 2 1 2 4 1 1 -1 1 1 9 5 2 3 3 2 1 1 0 0 0 1 0 0 1.1681 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 2 2 4 2 1 1 3 2 2 1 1 0 0 0 1 1 2 3 2 1 4 2 3 2 2 2 4 2 2 2 4 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 1 1 1 1 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 1 9 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 3 3 38 1 2 1 3 4 1 1 2 2 1 15 1 1 3 1 4 2 1 1 0 0 0 0 0 1.97656 +3 -1 1 6 1 1 0 1 1 1 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 2 1 3 2 3 2 1 2 3 2 2 2 1 0 0 0 3 1 2 2 1 2 2 3 1 4 4 1 1 1 4 3 3 0 0 0 1 0 1 0 0 0 1 0 0 1 0 1 0 0 0 1 1 2 1 1 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 1 0 1 0 0 1 0 0 1 9 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 5 5 55 2 3 4 3 4 2 13 3 1 4 17 1 1 4 6 1 -1 2 0 0 0 0 1 0 .44512 +11 11 10 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 1 3 2 4 4 3 4 4 4 2 3 1 0 0 0 3 1 4 3 2 3 2 3 3 4 2 3 3 2 3 4 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 2 2 3 4 1 1 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 49 2 3 1 3 4 2 15 11 1 1 17 1 1 4 4 2 11 2 0 0 0 0 1 0 .84886 +9 -1 6 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 3 4 3 3 4 3 2 2 3 3 0 0 1 0 4 4 4 3 2 2 3 2 2 2 3 4 3 3 4 4 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 4 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 1 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 1 1 24 4 5 1 3 4 1 4 -1 2 1 6 4 2 1 4 5 11 2 0 0 0 0 1 0 1.23875 +2 -1 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 4 3 4 4 3 2 3 3 3 3 0 0 1 0 3 4 2 4 2 4 4 4 2 4 2 2 2 2 2 2 2 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 1 1 0 0 1 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 2 2 2 33 4 6 9 3 7 2 14 2 2 9 2 4 2 3 3 4 3 1 1 1 1 0 0 0 .43567 +1 -1 1 2 1 0 0 0 1 1 0 1 0 0 1 1 1 0 0 1 0 0 0 1 0 1 1 1 0 1 1 1 0 0 2 2 3 3 3 3 4 2 2 2 3 2 2 1 0 0 0 3 4 4 4 1 5 3 4 2 4 4 1 4 1 5 2 1 1 0 1 1 0 0 0 0 0 1 0 0 1 0 1 0 0 0 2 2 2 1 1 1 0 0 1 1 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 52 1 2 4 8 1 1 1 1 1 4 17 1 1 4 2 3 11 2 0 0 0 0 1 0 1.20621 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 2 2 3 4 1 2 4 4 1 3 3 2 3 1 0 0 0 2 2 4 3 1 1 4 4 3 5 4 1 1 1 3 1 1 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 2 3 3 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 5 5 57 4 6 10 2 2 2 15 2 1 10 17 1 1 4 2 3 11 2 0 0 0 0 1 0 .47778 +2 -1 1 8 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 0 1 2 2 3 3 5 5 4 5 3 3 1 1 1 0 0 0 3 2 4 4 1 2 4 2 4 2 2 4 4 1 4 2 1 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 1 4 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 29 1 1 1 2 5 2 11 2 1 1 12 1 1 3 1 5 2 1 1 0 0 0 0 0 .98914 +3 -1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 0 1 0 1 1 0 0 0 1 2 2 2 4 2 3 1 1 3 3 3 3 1 0 0 0 1 2 4 4 1 4 3 4 1 5 3 2 5 3 2 2 2 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 4 2 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 7 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 5 5 58 4 5 2 2 3 1 1 3 1 2 9 2 1 4 4 2 11 2 0 0 0 0 1 0 .72613 +3 -1 1 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 1 1 0 0 0 0 3 2 2 2 3 3 4 3 2 3 3 3 3 1 0 0 0 4 2 5 4 1 5 1 5 3 5 4 2 1 2 4 2 2 0 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 3 5 5 3 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 52 3 4 1 8 3 1 1 3 2 1 12 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.66725 +10 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 1 2 2 2 4 1 4 1 2 3 2 3 3 1 0 0 0 3 2 1 2 1 2 4 1 4 2 4 1 2 2 3 2 3 0 0 1 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 2 1 2 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 1 7 6 69 3 4 8 2 2 1 1 1 1 8 10 2 1 4 2 2 -1 2 0 0 0 0 1 0 .78892 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 2 3 2 2 4 2 2 1 1 3 3 2 2 1 0 0 0 1 4 2 3 2 3 6 2 2 6 4 2 2 4 2 2 3 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 2 2 2 1 1 0 0 1 0 0 0 1 1 1 1 0 0 1 1 0 0 0 0 1 0 1 0 0 0 2 9 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 6 5 64 1 2 8 2 4 1 1 1 1 8 13 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.21096 +10 3 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 1 1 3 4 4 4 2 2 4 4 2 4 1 0 0 0 3 1 2 4 1 3 2 4 2 4 4 2 2 1 2 1 1 0 0 1 0 1 1 0 0 0 0 0 1 1 0 1 0 0 0 2 4 2 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 47 1 2 1 3 4 1 1 3 1 1 16 1 1 4 4 2 11 2 0 0 0 0 1 0 1.57929 +6 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 4 4 4 3 3 2 2 1 0 0 0 2 4 6 6 6 6 6 6 6 6 4 2 2 2 4 2 2 0 0 0 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 2 2 2 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 9 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 5 5 55 2 3 1 3 3 1 1 6 1 1 17 2 1 4 2 3 11 2 0 0 0 0 1 0 1.14997 +9 -1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 3 4 4 4 4 0 0 1 0 4 4 3 3 3 3 3 3 3 3 3 2 2 2 3 3 2 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 5 5 4 3 1 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 2 8 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 29 2 3 1 10 2 1 4 -1 1 1 17 1 1 3 1 4 2 1 1 1 0 0 0 0 1.58829 +2 -1 1 6 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 1 0 0 0 0 3 3 3 3 5 3 3 3 4 1 3 2 2 1 0 0 0 4 2 5 5 1 5 1 5 1 5 5 1 1 1 5 4 1 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 2 1 2 1 1 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 1 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 47 2 3 1 10 1 1 1 2 1 1 17 4 2 4 6 1 -1 2 0 0 0 0 1 0 1.05421 +4 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 2 3 3 3 4 2 5 1 3 4 4 4 4 0 1 0 0 3 3 5 3 1 5 1 3 1 3 3 1 1 1 1 1 2 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 2 1 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 4 4 53 2 3 7 6 1 1 1 4 1 7 3 3 2 4 4 1 -1 2 0 0 0 0 1 0 .39984 +3 -1 1 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 2 2 4 3 5 3 5 2 2 4 4 4 4 1 0 0 0 3 1 3 5 1 3 4 2 1 5 2 1 1 1 3 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 7 77 1 2 8 6 1 1 1 3 2 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 .83326 +2 -1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 3 3 3 2 1 1 5 1 1 3 3 4 4 1 0 0 0 3 1 1 4 1 4 1 1 1 4 2 1 1 1 1 1 1 0 0 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 2 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 7 76 4 5 8 6 7 1 1 2 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 .44187 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 3 4 3 3 3 3 3 3 3 3 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 5 1 1 3 1 1 1 1 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 49 4 5 9 6 1 1 1 2 2 1 9 3 2 4 4 2 11 2 0 0 0 0 1 0 .39004 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 5 3 3 3 3 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 1 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 21 1 2 1 6 1 1 1 -1 2 2 9 3 2 1 4 2 11 2 0 0 0 0 1 0 .58088 +10 10 6 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 3 3 4 3 3 4 4 3 4 1 0 0 0 3 4 3 3 1 4 3 3 2 4 5 1 1 1 4 2 2 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 3 3 2 3 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 2 4 4 45 1 2 5 3 3 2 9 10 2 4 17 1 1 4 2 4 11 2 0 0 0 0 1 0 .56992 +2 -1 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 2 2 2 2 5 1 1 4 2 2 2 2 1 0 0 0 2 4 1 1 2 2 4 1 5 1 1 1 1 1 1 1 5 1 1 0 0 0 1 0 0 0 1 1 0 0 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 7 6 68 4 5 8 3 7 2 9 2 1 8 3 2 1 4 2 5 11 2 0 0 0 0 1 0 .42419 +10 2 3 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 3 5 6 3 6 2 4 4 4 4 4 1 0 0 0 4 4 6 6 6 6 6 6 6 6 6 2 6 2 4 6 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 2 6 2 3 1 0 0 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 30 4 5 2 3 5 2 10 2 1 2 1 4 2 1 4 1 -1 2 0 0 0 0 1 0 .50526 +10 2 4 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 5 4 6 6 6 4 4 4 4 4 1 0 0 0 4 4 6 6 6 6 6 6 6 6 6 6 6 6 6 6 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 2 6 6 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 37 3 4 1 3 1 2 14 2 1 1 1 4 2 2 2 2 -1 2 0 0 0 0 1 0 .70511 +9 -1 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 5 6 2 3 2 4 4 4 4 4 0 0 1 0 4 4 2 6 6 3 6 6 6 3 6 2 2 6 4 6 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 2 6 6 2 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 20 2 3 5 3 1 2 18 -1 2 1 16 4 2 3 4 5 5 1 1 1 0 1 0 0 .60054 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 3 1 3 3 2 1 3 4 4 2 2 0 0 1 0 3 2 2 3 2 1 5 1 2 1 3 1 3 2 3 3 3 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 2 2 3 3 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 1 1 20 2 3 5 8 3 2 12 -1 1 5 16 4 2 1 4 5 11 2 0 0 0 0 1 0 .20961 +10 2 3 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 1 1 1 0 0 2 2 2 4 5 5 5 1 2 3 4 3 2 1 0 0 0 2 2 3 3 1 2 3 2 3 4 2 5 2 5 5 2 1 1 0 0 1 0 1 0 0 0 0 1 0 1 0 1 0 0 0 2 1 2 5 1 1 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 1 0 0 2 9 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 5 5 57 1 2 1 8 4 1 1 2 1 1 12 1 1 4 2 3 11 2 0 0 0 0 1 0 1.14327 +1 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 2 2 2 5 3 3 3 4 4 4 3 4 1 0 0 0 4 4 4 5 4 5 1 3 4 2 3 1 3 1 3 3 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 2 1 3 1 1 1 1 1 1 0 1 1 1 1 0 1 0 1 1 0 0 0 1 1 0 0 0 0 2 9 1 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 1 1 0 1 1 1 1 1 24 1 2 5 3 3 2 11 1 2 1 12 2 1 1 4 4 11 2 0 0 0 0 1 0 .44732 +1 -1 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 0 0 0 1 0 0 0 0 3 3 3 2 4 2 4 2 2 3 3 3 3 1 0 0 0 3 2 2 4 2 4 2 2 2 4 2 2 2 2 2 4 2 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 2 3 2 4 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 28 1 2 1 8 4 1 1 1 1 1 12 4 2 2 2 2 -1 2 0 0 0 0 1 0 1.34132 +10 10 1 1 1 0 1 1 1 0 0 0 0 1 0 0 0 0 0 1 0 1 1 1 1 0 0 0 1 1 0 0 0 0 1 2 2 3 3 4 5 1 1 3 3 2 3 1 0 0 0 4 2 4 3 1 5 1 4 1 4 5 2 4 3 2 1 1 0 1 0 1 0 1 0 0 0 0 1 0 1 0 1 0 0 0 2 2 3 2 1 0 0 0 0 0 0 1 1 1 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 72 4 6 8 8 4 1 1 10 1 8 9 2 1 4 4 1 -1 2 0 0 0 0 1 0 .97628 +5 -1 1 1 1 0 0 1 1 1 0 0 0 0 0 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 3 3 3 4 4 4 1 2 2 3 3 3 1 0 0 0 4 2 2 4 1 4 5 5 2 2 3 2 5 2 3 2 2 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 1 3 1 5 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 1 0 1 1 0 1 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 30 1 2 1 8 4 1 1 5 1 1 12 1 1 3 1 4 2 1 0 0 1 0 0 0 1.86505 +2 -1 3 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 2 5 5 1 1 3 2 2 2 1 0 0 0 4 4 2 4 1 1 4 1 5 2 4 1 1 1 1 4 4 0 0 1 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 35 4 5 7 3 3 2 9 2 2 2 17 1 1 1 4 4 11 2 0 0 0 0 1 0 .74017 +11 11 1 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 2 3 3 2 1 2 1 2 3 3 2 3 1 0 0 0 1 4 2 2 3 2 5 2 3 3 3 2 1 2 2 5 3 1 0 1 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 2 2 3 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 53 1 2 1 3 4 2 10 11 1 1 17 1 1 3 1 5 1 1 0 0 0 1 0 0 .81265 +10 10 6 6 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 4 3 3 3 3 3 3 2 3 3 3 3 3 1 0 0 0 4 3 3 3 2 3 3 3 3 4 4 2 2 2 3 2 2 0 0 0 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 3 3 3 3 1 1 1 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 34 1 1 1 2 4 2 8 10 2 1 11 1 1 3 1 3 1 1 1 0 0 0 0 0 .9265 +1 -1 1 6 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 2 2 2 3 4 1 4 1 1 2 3 2 3 1 0 0 0 2 2 2 3 1 2 3 2 1 3 3 1 1 1 3 2 1 0 0 1 0 1 1 0 0 0 0 0 1 1 1 0 0 0 0 1 1 2 1 1 1 0 0 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 7 7 78 1 1 8 7 4 1 1 1 1 8 12 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.2807 +9 -1 6 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 3 4 4 2 3 3 3 2 3 3 3 2 3 0 0 1 0 4 4 3 3 3 3 3 3 3 3 3 2 3 3 2 3 3 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 1 1 0 1 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 29 1 2 1 7 5 1 4 -1 1 1 15 4 2 2 2 2 -1 2 0 0 0 0 1 0 1.82904 +1 -1 1 10 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 2 2 4 4 3 3 1 4 4 2 2 1 0 0 1 0 2 2 4 3 2 4 3 3 3 4 4 1 2 1 3 2 1 0 0 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 1 2 1 0 0 1 0 0 0 1 1 1 1 1 1 0 1 1 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 46 1 2 1 9 5 1 1 1 1 1 14 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.40584 +1 -1 4 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 4 3 2 4 4 5 2 2 2 1 1 0 0 0 2 2 2 2 3 4 5 5 3 4 4 1 2 4 4 5 4 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 0 0 0 1 2 1 4 0 0 0 1 0 0 0 1 1 1 1 0 0 0 1 1 0 1 1 1 0 0 1 1 0 -1 9 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 3 3 44 3 4 1 9 8 2 5 1 2 1 7 1 1 3 3 6 1 1 0 0 0 1 0 0 .41396 +2 -1 2 6 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 0 3 3 3 3 4 4 5 1 4 3 3 2 3 1 0 0 0 3 2 4 5 1 5 1 5 1 5 5 1 1 1 5 1 1 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 77 2 3 8 9 1 1 1 2 1 8 5 2 1 4 6 1 -1 2 0 0 0 0 1 0 .46595 +9 -1 1 6 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 2 3 2 3 2 1 2 3 4 4 2 4 1 0 0 0 3 3 1 3 1 5 4 2 5 1 2 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 1 5 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 32 2 3 2 11 2 1 1 -1 2 1 17 1 1 2 2 2 -1 2 0 0 0 0 1 0 .83194 +11 6 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 3 2 3 3 3 3 3 3 1 0 0 0 2 4 3 4 3 4 3 4 3 4 3 2 3 2 3 3 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 2 2 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 32 1 2 1 11 2 1 1 6 2 1 17 1 1 3 1 4 2 1 0 1 1 0 0 0 1.47068 +10 10 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 2 3 3 2 3 3 3 2 2 3 4 2 2 1 0 0 0 3 2 3 3 1 4 4 2 4 2 3 1 3 3 3 4 3 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 3 4 1 1 0 1 0 0 0 1 1 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 59 1 2 1 7 4 1 1 10 2 1 14 1 1 4 2 2 -1 2 0 0 0 0 1 0 2.48363 +11 10 11 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 1 1 3 5 2 3 3 3 3 4 2 2 1 0 0 0 4 2 5 3 2 3 3 3 3 3 4 1 2 1 5 3 2 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 3 2 3 3 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 43 2 3 1 7 4 2 16 10 1 1 17 1 1 3 1 3 1 1 0 0 1 0 0 0 .89269 +2 -1 3 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 1 0 1 0 0 0 1 0 1 0 0 2 2 2 3 3 3 3 1 3 3 3 2 2 1 0 0 0 3 2 2 3 2 3 2 2 2 3 2 2 2 2 3 2 2 1 0 0 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 2 2 2 3 1 1 0 0 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 50 2 3 1 7 4 1 1 2 1 1 13 2 1 4 2 2 -1 2 0 0 0 0 1 0 2.12516 +6 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 3 3 4 3 5 4 2 1 2 2 1 0 0 0 4 2 2 4 1 2 5 2 2 4 5 1 1 1 1 1 1 0 1 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 2 2 5 1 1 1 0 1 0 0 0 1 0 1 1 1 1 0 1 1 0 0 0 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 29 2 3 1 7 4 1 1 6 1 1 13 1 1 3 1 3 1 1 1 0 0 0 0 0 2.18981 +6 -1 1 1 1 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 1 0 1 1 0 0 1 1 1 0 0 1 1 2 4 4 5 5 3 5 4 4 4 1 1 0 0 0 1 2 4 5 1 5 2 3 2 5 5 1 1 1 4 1 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 2 1 1 1 1 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 59 1 2 1 7 3 1 1 6 1 1 14 1 1 4 4 3 11 2 0 0 0 0 1 0 2.07283 +10 2 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 3 3 3 3 2 2 2 2 2 3 2 3 3 1 0 0 0 3 2 2 4 1 4 3 2 1 4 4 2 1 1 3 4 5 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 3 3 1 1 1 0 0 1 0 0 0 1 1 1 1 0 1 1 0 1 0 0 0 1 0 0 0 0 0 2 9 3 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 5 5 59 2 3 11 7 1 1 1 2 2 1 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.36976 +10 6 2 2 0 1 0 0 1 1 1 0 0 0 0 1 1 0 0 1 1 1 1 1 1 1 0 0 0 1 1 1 0 0 2 2 2 3 4 3 2 1 2 4 3 2 2 1 0 0 0 4 2 2 4 1 5 1 3 1 4 4 2 1 1 4 2 2 0 1 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 2 4 2 1 1 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 4 4 52 4 5 7 2 3 1 1 6 1 7 2 2 1 4 4 1 -1 2 0 0 0 0 1 0 .96987 +1 -1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 2 3 1 1 1 1 3 1 4 1 1 0 0 0 1 1 1 1 1 1 5 1 5 1 1 3 4 1 1 3 5 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 3 1 1 1 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 2 2 34 2 3 1 2 4 2 18 1 1 1 14 4 2 3 1 3 1 1 1 0 0 0 0 0 .82391 +2 -1 4 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 3 2 2 3 3 3 4 2 4 3 3 3 3 1 0 0 0 3 3 3 4 2 4 3 4 3 3 3 2 2 2 2 3 2 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 2 4 1 1 1 0 1 0 0 0 1 1 1 1 1 1 0 1 1 0 0 0 1 0 0 0 1 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 30 2 3 1 2 4 2 11 2 1 1 16 1 1 2 2 2 -1 2 0 0 0 0 1 0 .71024 +9 -1 6 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 2 3 3 3 3 2 4 3 3 2 3 1 0 0 0 4 2 2 2 2 2 3 2 2 2 2 1 2 1 2 2 2 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 2 2 2 4 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 4 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 4 4 53 4 5 1 2 2 1 1 -1 1 1 16 3 2 4 6 1 -1 2 0 0 0 0 1 0 1.15639 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 2 3 2 2 4 2 2 3 4 3 3 2 3 1 0 0 0 3 2 4 4 2 4 3 3 3 4 2 1 2 1 3 2 2 1 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 1 3 1 0 0 1 0 1 0 1 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 1 6 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 2 2 27 2 3 1 2 2 1 1 1 1 1 10 4 2 2 2 2 -1 2 0 0 0 0 1 0 1.5324 +1 -1 4 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 1 0 0 1 1 0 1 0 0 3 2 2 2 4 3 4 2 3 4 4 2 2 1 0 0 0 3 4 4 4 2 4 3 4 2 4 3 1 2 2 3 2 2 0 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 2 2 3 3 1 0 0 1 1 0 0 1 1 1 1 0 1 1 1 1 0 1 0 1 0 1 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 38 2 3 1 2 3 1 1 1 1 1 11 1 1 1 4 1 -1 2 0 0 0 0 1 0 1.41743 +10 10 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 5 6 6 6 6 6 5 5 5 4 1 0 0 0 4 4 6 6 6 6 6 6 6 6 6 6 6 6 2 4 6 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 6 6 6 6 1 1 0 1 0 0 0 1 1 1 1 1 1 1 1 1 0 0 1 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 29 3 4 1 2 1 1 4 10 2 1 17 4 2 3 1 5 1 1 0 1 0 0 0 0 1.42099 +9 -1 8 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 5 5 6 6 6 6 4 5 4 4 1 0 0 0 4 4 6 6 6 6 6 6 6 6 3 6 6 6 6 6 6 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 6 6 6 5 1 1 0 1 0 0 0 1 1 1 1 1 0 1 1 1 0 0 0 1 1 0 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 2 2 26 4 5 1 2 1 1 1 -1 2 10 9 3 2 3 1 5 2 1 1 0 0 1 0 0 1.64425 +2 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 4 3 4 4 2 4 2 4 2 3 0 1 0 0 4 2 3 4 2 5 1 3 2 2 4 1 1 1 2 3 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 4 1 1 0 1 0 0 0 1 1 1 1 0 1 1 1 1 0 0 1 1 1 1 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 1 1 24 3 4 1 6 1 1 1 2 2 1 5 1 1 2 2 3 11 2 0 0 0 0 1 0 1.23 +2 -1 1 3 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 1 0 0 0 1 1 1 0 0 3 3 3 3 2 4 2 2 4 2 3 3 3 1 0 0 0 3 2 4 4 2 5 3 2 2 4 5 2 2 2 4 2 2 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 2 3 2 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 0 0 1 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 52 2 3 8 6 3 1 1 2 1 8 12 1 1 4 2 2 -1 2 0 0 0 0 1 0 .5321 +2 -1 1 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 1 1 0 1 1 0 1 0 0 2 3 3 2 4 2 2 2 2 2 2 2 2 1 0 0 0 1 2 2 4 1 2 4 4 2 4 2 2 1 2 2 2 1 1 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 3 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 1 1 1 2 7 6 71 2 3 8 6 7 1 1 2 2 8 6 2 1 4 2 2 -1 2 0 0 0 0 1 0 .39843 +2 -1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 3 3 3 3 2 2 2 2 2 3 3 3 3 1 0 0 0 2 2 3 4 2 3 3 3 3 3 4 2 2 4 2 2 4 1 0 0 0 0 1 1 0 0 1 0 0 0 0 0 1 0 0 2 2 2 1 1 0 0 1 0 0 0 1 1 1 1 1 1 1 0 0 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 4 4 50 3 4 1 6 3 1 1 2 1 1 11 1 1 4 2 3 11 2 0 0 0 0 1 0 1.00972 +9 -1 9 9 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 1 0 0 1 1 0 0 0 0 0 1 0 0 3 3 3 4 5 4 5 3 2 4 4 3 3 1 0 0 0 4 3 4 4 1 5 2 4 2 4 4 1 1 2 4 1 2 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 2 2 3 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 69 1 2 8 10 4 1 1 -1 1 8 17 7 -1 4 6 6 11 2 0 0 0 0 1 0 .78915 +10 10 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 1 3 3 3 3 1 3 4 4 2 2 1 0 0 0 2 1 3 3 1 4 2 2 2 2 4 2 2 2 2 4 2 0 0 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 4 2 2 1 1 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 61 2 3 1 3 2 2 5 10 1 1 13 2 1 4 2 2 -1 2 0 0 0 0 1 0 .61829 +10 10 11 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 4 4 5 3 3 3 3 3 4 4 4 4 1 0 0 0 4 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 1 1 0 1 0 0 0 1 1 1 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0 2 9 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 1 1 0 1 1 1 2 2 28 2 3 1 3 4 -1 20 10 2 1 17 2 1 3 4 5 3 1 1 0 1 0 0 0 2.49434 +2 -1 9 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 4 4 2 2 4 3 3 3 3 1 0 0 0 2 1 2 4 4 4 2 4 1 2 2 2 2 2 2 4 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 74 4 6 8 3 7 1 1 2 1 8 6 3 2 4 2 2 -1 2 0 0 0 0 1 0 .65421 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 3 4 4 3 3 3 3 3 3 4 2 4 1 0 0 0 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 1 0 1 1 0 0 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 4 4 54 1 2 10 6 1 1 1 1 2 1 10 2 1 4 6 3 11 2 0 0 0 0 1 0 .54315 +10 10 10 9 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 1 0 1 0 0 0 0 1 0 1 0 0 4 4 4 3 1 2 4 3 4 3 4 2 4 0 0 1 0 4 4 3 5 5 4 2 2 4 4 3 1 1 1 3 1 1 1 1 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 2 3 2 4 1 0 1 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 3 3 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 1 0 0 1 1 1 1 3 3 42 2 3 10 6 1 1 1 10 1 10 2 4 2 4 4 1 -1 2 0 0 0 0 1 0 .27789 +10 10 6 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 3 3 3 3 3 3 4 4 4 4 0 0 1 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 3 10 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 55 3 4 1 6 1 1 1 10 1 1 9 3 2 4 4 1 -1 2 0 0 0 0 1 0 .57919 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 3 3 3 3 3 3 4 4 4 4 1 0 0 0 4 4 5 5 5 5 5 5 5 5 1 2 1 1 3 2 1 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 5 5 5 5 1 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 1 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 2 2 29 3 4 11 11 7 1 1 -1 2 1 6 4 2 3 1 3 1 1 0 0 1 0 0 0 .81216 +2 -1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 3 2 2 4 2 2 4 4 2 2 1 0 0 0 2 2 3 5 1 5 2 3 1 5 5 1 1 1 5 2 1 0 1 1 0 0 1 0 0 0 0 1 1 0 1 0 0 0 0 2 2 3 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 4 6 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 6 5 60 4 5 1 6 7 1 1 2 1 1 8 1 1 4 2 2 -1 2 0 0 0 0 1 0 .63659 +2 -1 6 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 3 3 3 4 5 4 4 3 4 4 4 2 2 1 0 0 0 3 2 5 5 5 5 2 5 1 5 5 2 2 2 5 2 2 0 1 0 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 2 2 2 2 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 38 2 3 1 6 3 1 1 2 1 1 7 4 2 3 3 3 2 1 1 0 0 1 0 0 .56642 +10 4 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 1 0 1 0 0 3 3 3 3 4 4 4 2 4 4 4 2 2 1 0 0 0 2 2 4 4 1 5 2 2 1 5 2 2 2 2 2 2 4 1 0 0 0 0 1 1 0 0 1 0 0 0 0 1 1 0 0 2 2 3 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 41 3 4 1 6 3 1 1 4 1 1 11 1 1 3 1 4 2 1 1 0 0 1 0 0 .87396 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 2 2 2 3 4 2 4 2 2 4 4 2 2 1 0 0 0 2 1 4 4 1 5 2 2 1 5 4 2 2 2 4 2 1 0 1 0 1 0 1 0 0 0 0 1 1 1 0 0 0 0 0 2 1 2 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 7 6 71 3 4 8 6 7 1 1 1 1 8 9 2 1 4 2 2 -1 2 0 0 0 0 1 0 .32522 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 1 0 0 1 0 0 0 0 0 0 0 3 3 3 4 5 4 5 2 4 4 4 3 3 1 0 0 0 3 2 4 4 1 5 2 4 1 5 4 2 2 2 5 4 2 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 4 4 4 4 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 52 1 2 1 6 4 1 1 -1 1 1 12 2 1 3 1 4 1 1 0 0 0 1 0 0 .81597 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 3 3 3 3 3 3 4 4 3 3 0 0 1 0 4 4 3 3 3 3 3 3 3 3 3 2 2 2 2 3 2 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 3 5 3 5 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 29 4 5 11 11 6 1 1 -1 2 1 7 4 2 3 2 4 2 1 0 0 1 1 0 0 .84245 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 5 2 3 2 2 4 4 4 4 1 0 0 0 2 4 3 4 4 4 4 4 4 4 2 2 2 2 3 2 3 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 2 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 7 80 3 4 8 11 7 1 1 2 1 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 .72185 +2 -1 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 3 3 4 4 3 4 2 4 3 4 2 3 1 0 0 0 3 2 2 3 2 3 4 2 4 3 4 1 1 3 4 4 2 1 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 1 2 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 1 1 1 1 1 1 2 3 3 40 2 3 1 6 4 1 1 2 1 1 10 1 1 4 2 2 -1 2 0 0 0 0 1 0 .70603 +9 -1 6 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 2 5 3 2 2 3 3 4 2 2 1 0 0 0 3 2 2 4 1 4 3 2 1 4 4 1 2 2 4 2 1 0 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 1 1 0 1 1 1 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 56 3 4 3 6 1 1 1 -1 1 3 9 2 1 4 2 4 11 2 0 0 0 0 1 0 .68637 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 2 2 3 3 2 2 3 2 2 3 3 3 3 1 0 0 0 2 1 1 3 2 3 4 2 3 2 4 2 3 3 2 2 2 0 1 1 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 1 1 1 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 4 4 54 4 6 10 6 1 1 1 2 1 10 2 3 2 4 6 1 -1 2 0 0 0 0 1 0 .40837 +10 4 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 1 0 1 0 0 0 1 0 1 0 0 3 3 3 4 5 2 4 2 2 3 4 3 3 1 0 0 0 4 4 2 5 1 4 2 4 4 5 4 1 2 4 4 2 4 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 4 5 4 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 -1 4 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 44 2 3 1 9 4 1 1 4 1 1 17 2 1 4 4 1 -1 2 0 0 0 0 1 0 .75825 +10 2 11 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 2 3 3 3 6 6 3 3 4 4 1 0 0 0 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 2 3 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 7 78 4 6 8 9 7 1 1 2 1 8 16 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.0191 +10 10 3 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 3 4 3 4 5 6 5 5 1 4 4 2 2 1 0 0 0 4 4 6 6 6 6 6 6 6 6 2 1 1 1 2 2 1 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 2 5 3 2 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 52 4 6 7 9 3 1 1 10 1 7 2 4 2 4 4 1 -1 2 0 0 0 0 1 0 .79632 +3 -1 1 1 1 1 0 1 0 1 1 0 0 0 0 0 0 0 0 1 1 0 1 0 1 1 0 0 0 0 0 0 0 0 1 1 1 3 1 2 5 2 1 2 4 3 1 1 0 0 0 4 1 2 5 1 4 4 2 1 5 4 1 1 1 4 1 1 1 0 1 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 1 1 1 1 0 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 3 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 7 7 75 4 6 8 9 4 1 1 3 1 8 8 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.19885 +2 -1 5 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 3 3 4 4 4 4 4 4 3 3 3 3 1 0 0 0 2 4 6 6 6 6 6 6 6 6 2 2 1 2 4 4 4 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 4 2 2 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 3 3 35 2 3 1 3 5 2 9 2 1 1 17 4 2 3 3 4 1 1 0 0 1 0 0 0 .56413 +10 2 11 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 1 4 4 4 4 4 3 3 3 3 0 0 1 0 4 4 6 6 6 6 6 6 6 6 4 2 6 2 2 2 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 2 2 3 1 1 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 2 3 3 38 3 4 1 3 1 2 18 2 2 1 8 4 2 2 2 2 -1 2 0 0 0 0 1 0 .82948 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 5 6 6 6 6 6 4 4 4 4 0 0 1 0 4 4 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 6 6 6 6 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 26 2 3 11 3 4 1 4 -1 2 1 12 4 2 3 1 3 1 1 1 0 0 0 0 0 .92116 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 2 2 3 3 4 2 6 2 2 3 3 3 3 1 0 0 0 4 4 6 6 6 6 6 6 6 6 2 2 2 2 4 4 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 3 2 2 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 1 1 0 1 1 1 3 3 42 2 3 1 3 2 1 4 2 1 1 9 4 2 3 1 4 1 1 1 0 0 0 0 0 1.09632 +10 9 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 5 6 6 6 6 6 5 5 5 5 0 0 1 0 4 4 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 39 3 4 1 3 4 1 4 9 2 1 17 4 2 2 2 2 -1 2 0 0 0 0 1 0 1.61199 +2 -1 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 2 2 2 2 2 2 2 2 2 1 0 0 0 2 2 2 2 2 2 4 2 2 2 2 2 2 2 4 2 4 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 2 2 2 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 9 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 7 6 65 4 6 8 3 7 1 2 2 1 8 3 3 2 4 6 1 -1 2 0 0 0 0 1 0 .65421 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 3 5 2 2 2 4 4 4 4 4 1 0 0 0 4 4 6 6 6 6 6 6 6 6 2 1 1 1 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 5 5 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 5 5 55 3 4 11 2 7 1 1 -1 2 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.01879 +10 10 1 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1 0 0 0 1 0 0 0 0 3 2 2 2 2 2 3 2 2 3 3 2 2 1 0 0 0 3 4 6 6 6 6 6 6 6 6 4 1 2 1 2 2 2 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 2 2 1 2 1 1 1 0 1 1 0 1 1 1 1 1 1 0 1 0 0 0 0 1 1 1 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 46 1 2 1 2 3 1 1 10 1 1 11 1 1 3 1 4 2 1 0 0 1 1 0 0 1.92703 +2 -1 1 8 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 1 0 0 3 3 3 2 4 3 4 1 4 3 4 3 3 1 0 0 0 3 3 3 3 4 4 3 2 2 4 3 1 2 3 2 2 2 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 2 2 2 1 1 0 0 0 0 0 1 0 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 -1 -1 0 0 0 0 0 1 1 1 2 4 4 47 2 3 1 5 2 1 1 2 2 1 10 2 1 4 2 3 11 2 0 0 0 0 1 0 1.61544 +11 11 1 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 2 2 2 3 2 3 4 2 4 3 3 2 3 1 0 0 0 4 3 3 3 2 5 4 3 3 3 4 2 2 3 3 3 3 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 2 2 3 2 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 6 5 60 2 3 1 3 5 -1 20 11 1 1 16 1 1 4 6 1 -1 2 0 0 0 0 1 0 1.29954 +2 -1 1 1 1 0 1 1 0 1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 3 2 4 4 1 2 2 3 2 2 1 0 0 0 2 1 3 5 1 4 4 2 1 2 4 2 2 2 2 2 2 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 2 2 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 7 7 76 3 4 8 3 1 1 1 2 1 8 16 2 1 4 4 1 -1 2 0 0 0 0 1 0 .84689 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 2 4 3 3 3 3 4 4 3 3 0 0 1 0 4 2 4 4 1 2 4 2 5 2 2 2 2 2 2 2 4 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 3 3 3 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 2 2 2 32 3 4 2 3 5 2 12 -1 2 1 16 1 1 3 1 3 1 1 1 0 0 0 0 0 .51952 +10 10 8 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 2 2 2 2 3 2 2 2 2 2 3 1 1 0 0 1 0 2 4 2 2 3 3 3 2 2 2 2 2 2 2 3 3 2 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 1 0 0 2 2 2 2 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 1 1 18 2 3 5 3 3 2 13 10 2 1 16 4 2 3 4 3 1 1 0 0 0 1 0 0 .29937 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 2 3 3 3 3 4 3 3 3 4 4 4 4 1 0 0 0 4 4 1 4 1 2 4 2 3 5 3 1 5 3 3 1 1 0 0 1 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 3 3 2 1 1 1 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 3 3 36 2 3 1 3 5 2 9 2 1 1 16 1 1 3 2 4 2 1 0 1 1 0 0 0 .59775 +1 -1 1 2 0 0 0 1 1 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 1 1 0 0 0 1 0 1 0 0 3 3 3 2 2 2 4 2 2 3 3 1 2 1 0 0 0 2 2 2 3 1 2 4 2 4 2 2 1 4 2 2 1 2 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 2 2 2 1 1 1 1 1 1 1 0 1 1 1 1 0 1 1 0 0 1 0 0 0 0 1 1 1 0 1 9 1 0 1 1 1 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 4 4 53 1 2 1 3 5 2 12 1 1 1 17 1 1 4 4 3 11 2 0 0 0 0 1 0 .81265 +5 -1 1 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 2 3 2 3 4 5 3 2 5 3 3 2 2 1 0 0 0 3 2 3 5 1 5 3 3 1 5 5 1 1 1 2 1 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 3 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 4 4 54 1 2 2 11 4 1 1 5 1 2 10 2 1 4 4 1 -1 2 0 0 0 0 1 0 .88087 +2 -1 1 3 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 1 1 0 1 0 0 1 1 1 1 0 0 3 3 2 2 4 2 2 1 2 3 3 3 2 0 1 0 0 2 2 1 2 1 4 2 2 1 4 4 2 2 2 3 2 4 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 2 1 1 2 1 1 1 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 1 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 21 2 3 5 11 3 1 1 2 1 5 1 4 2 1 4 5 11 2 0 0 0 0 1 0 .49588 +9 -1 10 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 1 1 0 0 0 0 2 2 3 3 2 3 3 1 2 2 3 2 4 0 0 1 0 4 4 6 3 6 6 6 6 6 6 2 1 3 4 2 2 3 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 4 3 6 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 5 5 57 1 2 1 3 2 1 4 -1 1 1 12 1 1 4 6 1 -1 2 0 0 0 0 1 0 1.52921 +11 10 1 6 0 0 1 1 1 1 1 0 0 1 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 3 4 2 1 3 3 1 2 2 2 2 2 1 0 0 0 4 1 3 4 2 3 3 2 3 4 3 1 2 1 2 3 2 0 0 1 0 1 1 0 0 0 1 0 0 0 1 1 0 0 0 5 5 3 1 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 1 0 1 0 1 0 1 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 4 4 53 1 2 11 3 3 1 4 10 2 8 14 1 1 3 1 3 1 1 0 0 0 1 0 0 1.06 +3 -1 5 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 2 2 3 3 3 4 3 3 2 2 2 2 0 1 0 0 2 4 6 4 6 6 4 4 6 6 3 3 3 3 3 3 1 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 3 2 3 3 0 0 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 0 1 1 1 0 1 0 0 -1 9 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 1 1 0 1 1 1 1 1 22 2 3 7 11 3 2 12 3 1 7 16 4 2 1 4 1 -1 2 0 0 0 0 1 0 .27013 +2 -1 1 6 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 1 1 0 1 1 1 1 0 0 1 2 2 3 2 4 4 1 2 2 3 1 2 0 1 0 0 3 1 2 3 1 2 5 2 2 2 3 2 1 1 3 3 2 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 1 2 2 1 1 1 1 0 1 0 1 1 1 1 0 1 1 1 1 1 0 1 1 1 1 1 0 0 1 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 1 1 19 1 2 5 11 3 1 1 2 2 4 1 4 2 1 4 5 11 2 0 0 0 0 1 0 .58352 +2 -1 6 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 4 3 4 3 3 3 3 3 3 1 0 0 0 2 1 2 3 2 3 3 2 2 3 3 2 2 2 2 2 3 0 1 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 3 3 3 2 1 1 0 1 0 0 0 1 1 1 0 1 1 0 1 0 1 0 0 1 0 1 0 0 0 2 9 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 0 1 1 1 1 1 1 2 1 1 20 2 3 2 11 3 1 1 2 1 2 1 4 2 1 4 4 11 2 0 0 0 0 1 0 .80929 +10 10 4 5 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 3 3 2 2 0 1 0 0 2 4 2 3 2 3 3 3 3 3 3 2 3 3 2 3 2 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 3 2 2 3 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 4 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 1 0 0 1 1 1 2 2 2 26 1 2 1 11 4 1 1 10 1 1 1 4 2 1 4 4 11 2 0 0 0 0 1 0 1.38797 +2 -1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 2 2 4 4 1 1 3 4 1 1 0 1 0 0 1 1 2 2 2 1 4 3 4 5 1 2 4 4 1 1 2 0 0 0 0 0 1 1 0 0 1 0 0 0 0 1 1 0 0 2 3 4 1 1 1 1 1 0 0 0 1 1 1 1 0 1 0 1 1 1 0 1 1 0 1 1 1 0 1 4 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 1 0 0 1 0 1 1 1 22 2 3 5 11 3 1 1 2 2 1 1 4 2 1 4 2 11 2 0 0 0 0 1 0 .49588 +2 -1 1 1 0 0 1 0 1 1 0 0 0 0 1 1 0 0 0 0 0 1 1 1 0 1 0 0 1 1 1 0 0 0 1 2 2 4 2 4 5 2 4 3 4 1 1 1 0 0 0 1 1 4 5 2 4 4 4 4 5 5 1 1 2 2 4 1 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 1 3 1 1 1 1 1 0 1 0 1 1 1 1 0 1 1 1 1 1 0 1 1 0 1 1 0 0 1 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 2 2 25 2 3 4 11 4 1 1 2 1 4 16 4 2 1 4 3 11 2 0 0 0 0 1 0 .91758 +9 -1 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 3 3 2 2 2 2 1 2 2 2 3 3 1 0 0 0 3 4 6 3 6 5 4 6 6 3 3 2 2 2 2 2 3 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 2 3 4 2 1 1 1 0 1 0 0 1 1 1 1 1 1 1 1 1 1 0 0 1 1 0 1 0 0 1 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 19 1 2 5 11 3 2 18 -1 2 1 1 4 2 1 4 5 11 2 0 0 0 0 1 0 .25524 +10 10 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 3 4 4 4 2 2 3 3 4 4 1 0 0 0 4 4 4 4 2 3 3 4 2 4 4 2 2 3 4 4 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 2 2 2 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 24 2 3 1 6 2 1 1 10 2 1 17 2 1 1 4 2 11 2 0 0 0 0 1 0 .62682 +4 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 3 2 2 3 3 3 4 2 4 3 3 3 3 1 0 0 0 3 4 3 3 3 3 3 3 3 3 4 1 1 2 3 2 2 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 2 1 1 1 0 0 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 4 4 49 1 2 1 6 6 1 1 4 1 1 17 1 1 3 1 3 1 1 0 0 0 1 0 0 .83692 +4 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 2 2 3 4 4 4 2 4 3 3 3 3 1 0 0 0 4 4 4 3 3 3 3 3 3 3 4 5 5 4 2 2 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 2 2 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 7 6 70 2 3 8 6 1 1 1 4 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 .33869 +2 -1 1 6 0 0 1 1 0 1 0 1 1 0 0 0 0 0 0 1 0 1 0 0 1 1 1 1 0 1 1 1 0 0 1 1 1 4 3 4 3 1 4 3 4 1 1 1 0 0 0 2 2 4 2 1 2 4 2 3 4 4 2 2 4 2 2 1 0 0 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 2 4 2 4 1 1 0 1 0 0 0 1 1 1 1 1 1 1 0 0 1 0 0 1 0 1 0 0 0 2 9 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 4 4 54 1 1 1 11 4 2 10 2 1 1 14 1 1 3 1 5 2 1 0 0 0 1 0 0 1.00765 +6 -1 1 5 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 3 3 3 4 3 3 2 3 3 3 4 4 1 0 0 0 4 4 3 4 2 4 2 3 1 5 4 1 1 1 5 3 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 1 3 1 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 8 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 78 1 2 8 8 7 1 1 6 1 8 8 2 1 4 2 2 -1 2 0 0 0 0 1 0 .79356 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 2 2 4 5 4 3 2 2 4 4 4 4 1 0 0 0 4 2 5 5 1 5 1 5 1 5 3 1 5 4 5 2 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 4 5 3 5 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 1 0 0 1 1 1 1 7 6 68 4 5 8 11 7 1 1 -1 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .67248 +2 -1 1 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 4 2 2 3 1 2 2 3 3 3 1 0 0 0 2 2 3 3 3 3 4 2 4 2 3 2 2 3 2 3 4 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 2 2 2 1 1 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 2 8 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 2 5 5 55 3 4 1 11 2 1 1 2 2 1 11 1 1 4 2 3 11 2 0 0 0 0 1 0 1.58562 +9 -1 10 10 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 4 2 2 4 4 4 4 5 2 4 4 3 3 0 0 1 0 4 4 3 5 1 5 1 2 3 5 5 1 1 1 3 1 1 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 5 1 0 0 0 0 0 0 1 1 1 1 0 1 1 0 0 1 0 0 1 0 0 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 48 4 5 8 11 1 1 4 -1 2 8 6 3 2 4 2 2 -1 2 0 0 0 0 1 0 .77751 +2 -1 1 3 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 3 2 2 3 4 2 3 2 2 4 4 2 3 1 0 0 0 2 2 2 2 2 5 2 3 1 4 2 1 2 2 2 1 1 0 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 2 2 2 1 1 1 0 1 1 0 0 1 1 1 1 1 1 0 1 0 0 0 1 1 0 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 3 3 38 2 3 2 7 3 1 1 2 2 1 13 1 1 3 1 4 2 1 0 1 1 0 0 0 1.5175 +2 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 2 5 3 5 4 3 3 4 3 3 1 0 0 0 4 4 3 3 3 3 3 3 3 4 3 2 1 2 2 2 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 1 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 42 2 3 1 6 3 1 1 2 1 1 10 1 1 4 4 1 -1 2 0 0 0 0 1 0 .70603 +9 -1 10 10 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 3 3 4 2 2 2 2 2 3 3 3 3 1 0 0 0 3 4 2 2 2 3 2 3 2 4 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 2 3 2 1 1 0 1 0 0 0 1 1 0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 2 2 30 2 3 5 6 4 1 1 -1 2 1 12 4 2 3 1 3 1 1 0 0 1 0 0 0 .48413 +1 -1 2 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 1 0 0 0 1 1 1 0 0 2 3 2 2 4 3 2 1 2 3 3 3 3 1 0 0 0 4 2 2 3 2 3 3 2 2 4 5 1 1 2 3 2 2 0 0 1 1 0 1 0 0 0 1 0 1 0 0 1 0 0 0 1 2 2 2 1 1 0 1 1 0 0 1 1 1 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 64 2 3 1 6 4 1 1 1 1 1 13 1 1 4 2 2 -1 2 0 0 0 0 1 0 .67057 +2 -1 1 6 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 0 0 2 2 2 4 3 3 4 2 2 3 3 2 2 1 0 0 0 2 4 3 3 3 4 4 3 3 2 4 1 1 1 1 1 3 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 1 1 1 0 0 1 1 1 0 1 1 1 1 0 1 1 0 1 0 0 0 1 1 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 1 1 21 3 4 1 6 1 1 1 2 1 1 3 3 2 3 3 2 1 1 1 0 0 0 0 0 .87306 +1 -1 1 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 3 3 4 2 4 1 2 3 4 4 4 1 0 0 0 2 2 2 4 1 2 2 2 2 4 3 1 2 3 2 2 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 7 81 3 4 8 7 2 1 1 1 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.92416 +10 10 1 4 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 1 0 0 0 0 1 1 0 0 2 2 2 2 3 2 2 2 2 2 3 3 3 1 0 0 0 3 2 2 3 2 3 4 2 2 3 3 1 2 4 2 2 4 1 0 1 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 1 2 2 1 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 48 1 2 2 8 3 1 1 10 2 1 13 1 1 3 1 5 3 1 0 0 1 1 0 0 1.07321 +10 10 3 9 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 0 0 0 0 0 0 0 0 3 2 2 3 4 3 2 1 3 2 3 2 2 1 0 0 0 4 2 3 3 1 2 2 3 2 3 2 2 1 3 2 2 2 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 48 2 3 4 7 5 1 1 10 1 4 10 4 2 3 1 3 1 1 0 0 1 0 0 0 1.21951 +10 10 7 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 2 3 3 2 3 2 3 2 3 2 3 1 0 0 0 4 1 3 2 2 2 2 2 2 3 4 2 2 2 3 2 2 0 0 0 0 1 0 1 0 0 1 1 0 0 0 1 0 0 0 2 2 2 2 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 40 3 4 1 11 4 2 10 10 1 1 7 1 1 3 1 5 5 1 0 1 0 1 0 0 .61998 +8 -1 10 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 2 5 2 2 2 2 3 3 4 4 1 0 0 0 4 4 3 3 2 3 3 3 2 3 3 3 3 2 3 3 2 1 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 2 3 3 2 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 39 3 4 11 11 7 2 10 8 2 11 16 1 1 3 5 2 1 1 0 0 0 1 0 0 .4239 +8 -1 7 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 2 2 2 2 2 4 3 3 3 3 1 0 0 0 3 4 3 3 3 4 2 4 3 3 4 3 2 2 4 3 2 0 0 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 2 3 2 2 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 8 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 58 3 4 11 11 7 2 10 8 1 11 6 1 1 3 5 5 3 1 0 0 0 1 0 0 .46168 +9 -1 9 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 4 2 3 3 3 3 2 3 3 2 2 0 0 1 0 4 4 2 3 3 4 2 3 3 2 3 3 3 3 2 3 4 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 2 3 2 3 1 1 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 44 2 3 4 11 7 1 4 -1 1 4 13 4 2 3 1 5 2 1 0 0 1 1 0 0 .88417 +2 -1 5 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 4 5 3 4 1 5 3 4 2 2 0 0 1 0 1 4 4 5 3 5 2 3 3 5 2 2 2 2 5 5 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 2 3 4 2 1 0 0 0 0 0 0 1 1 1 1 0 0 0 1 1 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 1 1 24 3 4 1 3 4 1 4 2 2 1 13 4 2 1 4 3 11 2 0 0 0 0 1 0 1.19421 +2 -1 1 8 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 1 1 1 1 0 0 1 1 1 0 0 0 2 2 2 2 3 2 3 2 2 3 3 2 2 1 0 0 0 3 2 1 2 1 2 3 2 2 4 3 2 4 4 2 2 4 0 1 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 2 1 1 1 1 0 0 0 1 1 1 1 1 1 0 1 0 0 0 0 1 0 1 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 36 1 1 1 8 5 1 1 2 1 1 15 2 1 2 2 2 -1 2 0 0 0 0 1 0 1.52839 +9 -1 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 5 3 3 3 3 3 3 3 3 0 0 1 0 3 4 3 3 3 3 3 3 3 3 4 2 2 3 2 2 4 0 0 0 1 1 1 0 0 0 1 0 0 0 0 0 1 0 0 3 3 4 2 1 1 0 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 2 1 1 23 2 3 1 3 4 1 4 -1 2 1 17 1 1 1 4 5 11 2 0 0 0 0 1 0 1.77797 +11 9 11 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 3 3 2 3 3 3 3 3 5 5 5 5 0 0 1 0 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 3 3 3 3 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 1 1 0 1 1 0 0 1 0 0 1 9 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 1 1 24 2 3 5 8 4 2 18 9 1 5 16 4 2 1 4 4 11 2 0 0 0 0 1 0 .3421 +9 -1 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 4 3 3 4 2 2 4 4 4 4 0 0 1 0 3 4 2 3 4 3 3 4 3 3 4 2 2 4 2 3 4 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 4 2 2 1 0 0 1 0 0 0 1 1 1 0 0 1 0 1 1 0 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 1 1 23 4 5 1 3 3 1 4 -1 2 1 17 1 1 1 4 5 11 2 0 0 0 0 1 0 1.31257 +10 10 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 4 2 4 4 3 2 2 4 3 3 3 3 1 0 0 0 3 4 2 2 3 2 4 3 3 3 4 4 4 4 2 2 4 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 1 1 1 1 0 1 0 0 0 1 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 2 3 3 40 3 4 1 3 6 1 4 10 2 1 17 1 1 3 1 3 1 1 0 0 0 1 0 0 1.70805 +2 -1 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 3 2 3 3 2 2 4 2 3 4 3 3 0 0 1 0 3 4 3 2 2 4 2 3 2 4 2 2 2 2 2 2 2 1 0 0 1 0 0 1 0 0 1 0 0 0 1 1 0 0 0 4 4 2 2 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 2 2 25 2 3 5 3 5 2 11 2 1 5 17 4 2 1 4 5 11 2 0 0 0 0 1 0 .40029 +9 -1 11 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 5 3 6 6 6 4 3 3 3 3 0 0 0 1 4 4 3 3 3 3 3 3 3 3 6 6 6 6 6 6 6 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 19 3 4 1 5 2 1 1 -1 2 1 16 7 -1 1 4 3 11 2 0 0 0 0 1 0 2.64903 +1 -1 1 10 1 0 1 0 1 1 0 0 0 0 1 1 1 0 0 1 0 1 1 1 1 1 0 0 0 1 1 1 0 0 2 2 2 2 5 1 5 1 2 3 3 4 4 1 0 0 0 3 1 2 4 4 2 2 4 1 4 4 2 4 1 4 2 4 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 1 1 4 1 1 0 1 0 0 0 1 1 1 1 1 1 0 1 0 0 0 1 0 0 1 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 38 1 1 1 7 5 1 1 1 1 1 15 1 1 2 2 2 -1 2 0 0 0 0 1 0 2.62752 +1 -1 5 1 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 1 1 0 1 1 0 0 0 1 0 0 0 0 2 2 2 2 3 2 4 2 2 2 3 2 2 1 0 0 0 3 2 2 4 2 5 2 2 3 4 3 2 1 4 3 3 4 1 0 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 2 2 3 1 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 1 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 2 2 2 33 1 2 1 7 4 1 2 1 1 1 15 1 1 3 1 3 1 1 1 0 0 0 0 0 2.57682 +9 -1 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 2 2 2 2 3 3 3 3 2 2 2 2 0 0 1 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 3 3 3 4 1 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 25 4 5 1 3 2 1 4 -1 1 1 1 4 2 3 1 4 2 1 1 1 0 0 0 0 1.9485 +10 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 2 4 2 2 2 2 2 2 2 2 1 0 0 0 2 4 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 4 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 2 2 26 4 5 1 3 1 1 4 1 1 1 9 4 2 2 2 4 11 2 0 0 0 0 1 0 1.9485 +10 2 4 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 2 2 2 3 2 3 3 3 3 1 0 0 0 2 2 2 4 2 4 3 2 2 2 4 3 2 2 3 2 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 1 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 7 7 84 4 6 8 8 6 1 1 2 1 8 2 6 -1 4 6 1 -1 2 0 0 0 0 1 0 1.51285 +2 -1 3 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 4 2 2 2 2 2 3 3 3 1 0 0 0 1 1 4 3 1 2 2 2 2 1 2 1 2 1 3 2 1 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 7 78 4 5 8 8 6 1 1 2 1 8 2 5 2 4 6 1 -1 2 0 0 0 0 1 0 1.41686 +10 1 2 5 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 2 2 2 2 3 4 4 1 2 3 4 3 3 1 0 0 0 3 4 4 4 1 5 2 6 1 4 4 1 1 4 1 1 3 0 1 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 1 2 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 66 1 2 8 11 4 1 1 1 2 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .9346 +2 -1 1 1 0 0 1 1 1 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 1 1 0 1 0 1 1 0 0 2 2 2 3 4 5 4 2 4 2 3 2 2 1 0 0 0 3 4 5 5 3 4 4 3 3 4 2 2 2 3 4 2 1 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 2 2 3 2 1 1 0 1 0 0 0 1 1 1 1 1 1 0 1 0 0 0 1 1 0 1 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 31 1 2 2 11 5 1 1 2 2 2 13 1 1 3 1 3 1 1 1 0 0 0 0 0 1.20331 +1 -1 11 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 0 1 0 0 0 0 0 0 2 2 3 2 4 3 4 2 3 2 4 2 4 0 0 1 0 2 4 6 6 6 6 6 6 6 6 2 2 3 4 3 2 4 1 1 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 4 3 6 1 1 1 0 1 0 0 0 1 1 1 1 0 1 1 1 1 1 0 1 0 1 1 0 0 0 2 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 22 2 3 1 11 5 1 4 1 2 1 14 4 2 1 4 4 11 2 0 0 0 0 1 0 1.30837 +2 -1 5 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 3 2 3 3 3 3 2 4 3 3 3 2 0 0 1 0 3 4 2 3 2 5 2 2 4 3 1 2 2 4 2 4 3 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 3 2 2 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 53 4 5 1 10 7 2 10 2 1 1 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .70153 +2 -1 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 2 1 3 4 2 1 3 4 4 2 2 1 0 0 0 4 4 3 2 4 4 2 4 2 3 2 4 1 2 4 3 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 4 2 2 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 31 3 4 11 10 7 2 10 2 2 1 10 2 1 3 1 5 3 1 0 1 1 0 0 0 .4181 +1 -1 1 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 3 3 4 4 3 4 2 2 3 3 4 4 1 0 0 0 3 2 3 5 1 5 2 3 1 4 4 2 2 2 3 2 2 0 0 0 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 2 2 3 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 5 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 7 6 66 3 4 8 4 1 1 1 1 1 8 7 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.24659 +9 -1 5 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 4 2 3 3 4 3 3 2 3 2 3 2 0 0 1 0 3 4 2 2 3 4 3 2 2 4 4 4 2 3 2 2 2 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 4 2 2 3 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 18 2 3 1 10 7 2 13 -1 2 1 17 4 2 1 4 5 11 2 0 0 0 0 1 0 .35434 +1 -1 8 10 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 3 2 3 3 4 3 3 2 4 4 4 3 4 1 0 0 0 4 4 3 4 3 3 3 3 3 3 2 1 1 2 3 2 2 0 0 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 1 2 3 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 8 4 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 3 3 43 3 4 1 4 2 1 1 1 1 1 10 1 1 3 1 5 3 1 0 0 1 1 0 0 1.82818 +2 -1 6 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 2 4 2 3 4 3 4 4 4 4 0 0 1 0 4 4 3 1 2 4 4 4 3 3 2 4 4 3 2 1 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 4 2 3 6 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 41 4 5 7 10 7 1 4 2 2 1 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.36179 +2 -1 5 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 4 3 2 3 2 4 4 4 4 3 2 0 0 1 0 3 4 5 4 4 4 3 3 3 4 4 2 2 2 3 3 3 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 4 3 4 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 31 3 4 1 10 5 2 10 2 1 1 17 2 1 3 1 4 2 1 0 1 1 0 0 0 .82424 +3 -1 5 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 1 2 3 2 3 4 3 3 2 3 4 0 0 1 0 2 4 3 4 2 4 3 1 2 3 4 2 3 1 4 2 5 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 2 3 4 4 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 37 1 2 1 10 1 2 10 3 1 1 17 2 1 3 1 5 3 1 0 0 1 1 0 0 .69579 +2 -1 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 3 3 3 2 1 3 2 3 3 4 3 3 1 0 0 0 3 2 2 2 6 1 3 2 3 2 2 2 2 1 1 1 1 0 1 0 0 1 1 0 0 0 1 0 1 0 1 0 0 0 0 1 2 1 2 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 5 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 1 1 24 4 6 9 3 1 2 14 2 1 9 16 3 2 3 3 5 3 1 1 1 0 0 0 0 .52827 +1 -1 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 3 3 3 3 2 1 1 1 3 2 3 2 2 1 0 0 0 3 1 2 2 3 2 4 2 3 2 3 4 3 3 3 3 4 0 0 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 2 1 3 1 1 1 1 1 0 0 0 1 1 1 1 0 1 0 0 0 1 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 3 3 40 3 4 1 3 4 2 14 1 1 1 10 2 1 4 2 4 11 2 0 0 0 0 1 0 .8569 +2 -1 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 4 3 4 3 2 4 2 3 3 3 2 3 0 0 1 0 4 4 2 2 3 5 2 4 4 3 4 2 2 2 4 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 2 5 3 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 31 2 3 1 10 7 2 10 2 1 1 17 2 1 3 1 5 3 1 1 1 1 0 0 0 .67735 +10 10 5 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 3 1 2 2 2 2 3 3 2 2 1 0 0 0 3 1 2 1 1 2 4 2 2 3 3 3 1 1 4 1 3 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 3 1 1 1 1 1 1 1 0 0 0 1 1 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 10 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 1 1 18 2 3 5 3 1 2 14 10 2 1 16 3 2 1 4 5 11 2 0 0 0 0 1 0 .29937 +9 -1 10 10 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 5 5 5 5 5 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 4 3 3 5 1 1 1 5 2 1 1 0 1 0 0 1 0 0 0 1 0 1 1 0 0 0 0 0 3 3 3 5 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 8 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 3 3 35 3 4 11 10 1 1 1 -1 1 11 17 3 2 3 2 4 2 1 0 0 1 1 0 0 .88572 +11 11 5 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 5 5 5 5 6 6 6 6 6 5 5 5 5 1 0 0 0 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 6 6 6 6 1 1 1 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 1 0 0 1 0 2 3 3 38 3 4 1 3 2 2 8 11 1 1 9 3 2 3 1 5 4 1 0 1 0 1 0 0 .70511 +10 2 1 1 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 0 1 1 1 0 0 1 2 2 2 2 2 3 2 2 2 2 3 3 1 0 0 0 2 2 2 4 2 4 2 2 2 2 2 1 1 3 1 1 1 1 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 2 2 2 2 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 0 0 0 0 0 0 2 4 4 51 1 2 2 10 5 1 1 2 2 2 17 1 1 3 1 4 2 1 0 0 0 1 0 0 1.07548 +2 -1 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 2 3 2 1 1 1 2 1 2 2 2 1 0 0 0 3 2 4 1 1 5 5 2 4 2 6 1 1 1 3 1 4 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 2 1 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 3 3 42 4 6 9 3 7 2 14 2 1 9 16 3 2 4 4 5 11 2 0 0 0 0 1 0 .3616 +10 1 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 2 2 2 2 2 3 3 2 2 1 0 0 0 2 3 3 1 2 1 4 2 3 4 3 4 3 2 4 5 4 0 0 1 1 1 0 0 0 0 1 0 1 1 0 0 0 0 0 2 2 1 2 1 0 1 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 1 10 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 4 4 47 4 6 11 3 7 2 15 1 1 11 16 3 2 4 4 3 11 2 0 0 0 0 1 0 .41777 +3 -1 3 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 3 2 2 2 2 2 2 2 2 2 1 0 0 0 2 3 2 2 2 2 2 2 2 2 1 1 1 3 5 5 5 0 0 0 1 1 1 0 0 0 0 0 0 0 1 0 1 0 0 2 2 2 2 1 1 1 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 2 2 33 2 3 1 3 4 2 14 3 1 1 10 3 2 3 1 4 1 1 1 0 0 0 0 0 .60531 +1 -1 3 3 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 2 3 3 3 4 4 4 4 4 3 3 3 3 1 0 0 0 3 3 1 1 4 1 4 2 3 3 1 1 5 1 1 1 5 0 1 1 0 0 1 0 0 0 0 0 1 1 0 1 0 0 0 4 4 4 4 1 1 1 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 1 5 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 3 3 44 3 4 1 3 4 2 15 1 1 1 17 1 1 3 3 4 1 1 0 0 0 1 0 0 .74713 +3 -1 2 8 1 1 1 1 1 1 0 1 0 0 0 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 2 2 3 4 4 4 3 2 4 3 2 2 1 0 0 0 4 3 4 5 1 3 2 4 1 5 5 1 1 2 4 1 1 0 1 0 1 0 1 0 0 0 0 1 0 1 0 1 0 0 0 1 2 3 2 1 0 0 1 1 1 0 1 1 1 1 1 1 1 1 1 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 41 1 2 11 2 3 1 1 3 2 1 15 4 2 3 1 5 4 1 0 1 1 1 0 0 1.26612 +2 -1 1 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 3 3 4 2 2 1 0 0 0 3 4 3 3 3 3 3 3 3 3 4 2 2 2 2 2 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 28 4 5 2 5 6 2 10 2 2 2 6 1 1 3 1 5 2 1 0 1 1 0 0 0 .60998 +11 2 6 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 3 3 3 3 3 1 2 3 2 0 0 1 0 4 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 3 3 3 3 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 2 8 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 1 0 0 1 0 1 1 1 22 1 2 5 3 4 2 17 2 2 1 16 4 2 1 4 5 11 2 0 0 0 0 1 0 .29945 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 1 2 5 4 2 2 2 1 4 4 4 4 1 0 0 0 4 2 2 1 1 2 5 2 4 2 4 2 4 5 2 2 3 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 1 1 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 7 6 71 2 3 4 5 3 2 18 2 1 4 13 2 1 4 2 2 -1 2 0 0 0 0 1 0 .30947 +6 -1 3 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 3 3 3 4 3 4 5 3 4 4 4 3 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 2 2 1 2 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 2 3 3 1 0 0 1 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 2 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 32 3 4 11 5 1 1 1 6 2 4 5 5 2 3 1 3 1 1 1 0 0 0 0 0 .87745 +10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 2 2 2 2 2 4 4 4 4 1 0 0 0 4 4 6 6 6 6 6 6 6 6 1 1 1 1 5 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 6 6 6 1 0 0 1 0 1 0 1 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 2 2 33 4 5 4 5 7 1 4 10 1 4 16 3 2 3 1 4 2 1 0 1 1 0 0 0 1.25131 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 4 4 5 6 6 3 3 4 4 4 4 0 0 0 1 4 4 6 6 6 6 6 6 6 6 6 2 2 6 6 6 6 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 6 6 6 5 1 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 2 2 34 4 5 2 5 7 1 1 -1 1 2 16 3 2 1 4 3 11 2 0 0 0 0 1 0 1.0637 +2 -1 6 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 3 4 4 3 5 4 2 3 2 3 2 2 3 0 0 1 0 2 4 3 3 2 2 3 4 2 3 3 2 1 4 2 3 2 0 0 0 0 1 1 1 0 0 1 0 1 0 0 1 0 0 0 3 4 2 4 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 1 0 1 1 1 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 21 3 4 4 10 1 2 10 2 2 4 17 2 1 1 4 5 11 2 0 0 0 0 1 0 .41303 +11 11 10 10 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 3 2 3 2 2 3 2 3 2 3 3 2 0 1 0 0 3 2 3 2 4 2 2 3 2 1 3 2 2 2 3 3 2 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 2 3 2 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 0 4 5 11 10 7 -1 20 11 2 1 17 2 1 -1 2 6 11 2 0 0 0 0 1 0 1.11654 +2 -1 5 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 3 3 3 5 3 4 4 2 3 3 3 1 0 0 0 3 3 4 3 4 3 3 4 3 4 3 3 3 4 3 3 3 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 3 3 4 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 41 4 5 1 10 7 2 10 2 1 1 4 4 2 4 2 3 11 2 0 0 0 0 1 0 .58777 +2 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 4 3 3 2 4 2 3 3 3 2 3 3 0 1 0 0 3 2 2 2 2 3 4 3 3 2 4 3 3 2 4 3 3 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 3 2 3 5 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 35 4 5 4 10 7 2 18 2 1 4 8 1 1 2 2 3 11 2 0 0 0 0 1 0 .45381 +2 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 4 4 4 4 4 3 3 4 2 3 2 2 3 0 1 0 0 2 4 4 4 3 3 3 3 3 3 4 3 3 3 3 3 3 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 4 4 2 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 22 4 5 10 10 2 2 10 2 2 10 17 2 1 1 4 3 11 2 0 0 0 0 1 0 .44703 +3 -1 5 10 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 2 2 2 3 2 3 2 3 3 3 3 2 2 0 0 1 0 3 3 2 4 3 2 3 3 3 3 3 3 2 2 1 3 3 0 0 1 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 2 2 3 3 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 4 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 40 4 5 1 10 1 2 10 3 1 1 10 2 1 3 1 5 3 1 0 1 1 0 0 0 .74635 +2 -1 3 10 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 3 3 3 3 3 4 3 4 3 3 2 3 2 1 0 0 0 3 2 3 3 4 3 4 3 4 3 4 3 2 3 4 3 4 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 3 3 4 4 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 40 4 6 4 10 7 2 10 2 1 4 17 4 2 3 1 5 3 1 0 0 1 0 0 0 .35112 +2 -1 4 6 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 1 0 0 0 0 2 2 2 3 2 3 3 3 4 3 2 2 3 1 0 0 0 2 2 3 3 3 2 2 2 3 4 2 3 2 3 3 2 4 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 3 3 3 2 1 0 0 1 0 0 0 1 0 1 0 0 1 0 1 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 19 3 4 1 10 3 2 10 2 2 1 17 4 2 3 4 5 2 1 0 0 0 1 0 0 .62348 +9 -1 9 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 3 2 2 4 2 2 3 3 3 2 1 0 0 0 3 2 2 4 2 4 3 2 2 3 4 2 3 3 2 2 3 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 3 2 4 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 9 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 62 1 2 1 2 2 1 1 -1 1 1 5 2 1 4 4 1 -1 2 0 0 0 0 1 0 1.14191 +2 -1 1 10 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 4 4 4 4 2 3 5 2 4 2 4 2 4 1 0 0 0 4 1 2 4 1 4 4 2 5 2 4 2 1 2 4 4 1 0 1 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 3 1 2 1 1 0 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 1 1 0 1 1 2 4 4 53 2 3 2 3 3 2 15 2 1 2 17 5 2 4 4 1 -1 2 0 0 0 0 1 0 .37187 +1 -1 6 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 3 3 3 1 2 2 2 2 3 3 2 2 1 0 0 0 2 2 2 4 2 2 4 2 4 2 4 4 2 2 2 4 2 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 1 1 3 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 1 1 19 4 5 1 3 2 2 15 1 2 2 16 5 2 1 4 5 11 2 0 0 0 0 1 0 .54185 +11 11 1 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 1 0 0 1 2 2 3 4 4 5 1 4 3 4 2 2 1 0 0 0 2 2 3 4 2 3 5 3 4 3 4 2 3 2 4 1 1 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 4 3 3 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 9 2 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 2 3 3 44 1 2 1 3 3 -1 20 11 1 1 11 1 1 4 4 2 11 2 0 0 0 0 1 0 1.65172 +9 -1 10 10 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 1 0 1 0 0 1 1 0 0 1 0 0 2 3 3 4 1 5 4 3 3 4 4 1 1 0 0 1 0 4 4 3 3 3 5 3 3 3 3 5 1 1 1 5 5 1 0 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 5 5 4 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 1 1 19 4 5 2 3 2 1 1 -1 2 1 1 4 2 1 4 1 -1 2 0 0 0 0 1 0 .73435 +9 -1 10 10 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 2 3 4 5 5 5 5 1 4 4 4 4 0 0 1 0 2 1 4 5 2 3 3 2 3 4 3 4 2 3 3 3 1 0 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 2 3 3 4 1 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 1 0 0 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 2 2 33 3 4 1 3 1 2 15 -1 1 1 5 3 2 2 2 2 -1 2 0 0 0 0 1 0 .82166 +2 -1 1 1 1 1 1 0 1 1 1 1 1 0 1 0 0 0 0 1 1 1 1 1 1 1 1 1 0 1 0 0 0 0 1 1 2 1 2 5 1 4 5 2 2 1 1 1 0 0 0 2 1 5 2 1 5 2 5 1 5 5 1 3 1 5 5 1 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 4 3 3 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 66 4 6 8 2 7 1 1 2 2 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .6709 +2 -1 5 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 2 2 2 3 3 4 3 1 3 3 3 3 3 0 0 1 0 4 3 2 3 2 3 4 4 3 3 4 2 2 2 3 4 2 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 2 2 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 1 0 0 1 0 0 1 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 2 2 25 2 3 1 3 5 1 4 2 1 1 17 4 2 1 4 1 -1 2 0 0 0 0 1 0 1.54368 +11 2 7 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 4 2 4 2 2 3 3 3 3 0 0 1 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 3 2 3 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 7 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 53 4 5 1 3 7 2 9 2 1 1 8 4 2 4 2 4 11 2 0 0 0 0 1 0 .69933 +2 -1 4 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 4 2 3 2 3 3 3 3 4 0 0 1 0 4 2 3 4 2 4 3 2 3 3 3 2 3 2 4 3 2 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 3 2 3 1 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 1 0 0 1 0 0 1 8 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 1 1 22 4 5 1 3 7 1 1 2 1 1 10 4 2 2 2 2 -1 2 0 0 0 0 1 0 1.23875 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 2 3 2 2 3 4 4 1 2 3 3 3 3 1 0 0 0 2 1 4 3 1 2 3 3 1 5 4 1 1 1 2 2 2 0 0 0 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 2 1 3 1 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 5 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 6 5 63 1 2 8 8 3 1 1 2 2 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.18204 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 3 4 4 2 2 4 3 3 3 3 0 1 0 0 1 1 4 4 1 4 4 4 3 2 4 3 2 2 4 4 1 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 2 2 1 1 1 1 1 0 0 0 1 1 1 1 0 1 1 1 1 1 0 1 1 1 1 1 1 0 1 9 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 1 1 0 1 1 1 1 1 23 2 3 2 11 4 1 1 2 1 2 16 4 2 1 4 5 11 2 0 0 0 0 1 0 .58334 +5 -1 1 5 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 4 2 6 2 2 2 4 4 4 4 0 1 0 0 3 1 2 3 2 3 3 2 4 2 3 1 2 3 3 3 2 0 1 1 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 1 1 2 1 1 1 1 1 0 1 0 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 0 0 1 9 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 0 1 1 0 1 1 1 1 1 1 20 2 3 2 11 3 1 1 5 1 2 1 4 2 1 4 5 11 2 0 0 0 0 1 0 .58334 +4 -1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 2 2 4 5 4 5 2 2 4 4 2 2 1 0 0 0 1 2 5 5 1 5 4 5 1 5 4 1 4 3 2 2 1 0 1 1 0 0 1 0 0 0 0 1 1 0 0 1 0 0 0 1 1 4 1 1 1 0 1 0 1 0 1 1 1 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 57 1 1 1 6 4 1 1 4 1 1 13 2 1 4 2 2 -1 2 0 0 0 0 1 0 .84172 +10 4 6 11 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 2 4 3 3 4 2 3 2 4 2 4 1 0 0 0 4 2 2 1 1 2 2 2 1 5 6 1 2 1 6 2 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 73 1 1 8 6 2 1 1 4 1 8 10 2 1 4 6 1 -1 2 0 0 0 0 1 0 .37221 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 3 4 4 5 5 0 1 0 0 4 2 2 3 2 5 2 2 3 2 4 2 2 6 2 4 5 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 2 2 3 1 1 1 1 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 2 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 21 2 3 5 11 8 1 1 -1 1 5 16 4 2 1 4 5 11 2 0 0 0 0 1 0 .58334 +2 -1 6 9 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 2 3 2 4 4 1 5 3 3 2 2 1 0 0 0 4 2 1 5 1 3 2 4 4 5 4 1 1 1 5 3 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 2 3 4 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 2 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 1 1 0 1 1 2 1 1 21 2 3 5 11 8 1 1 2 1 5 16 4 2 1 4 4 11 2 0 0 0 0 1 0 .80929 +11 11 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 3 4 4 4 4 4 4 4 4 4 1 0 0 0 3 3 6 6 6 5 6 5 6 6 1 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 7 7 82 4 6 11 4 2 1 1 11 1 11 17 5 2 4 6 1 -1 2 0 0 0 0 1 0 1.90565 +8 -1 1 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 4 5 1 5 2 5 4 4 4 4 1 0 0 0 3 4 5 5 5 5 5 5 5 5 5 1 1 1 5 1 1 0 0 1 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 5 5 5 5 1 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 7 4 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 69 3 4 8 4 2 1 1 8 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .8362 +10 1 4 4 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 4 1 2 3 3 3 3 1 0 0 0 3 4 2 3 1 4 3 2 2 4 3 1 1 1 2 3 1 1 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 64 2 3 2 2 6 1 1 1 2 1 7 2 1 4 6 2 11 2 0 0 0 0 1 0 .83723 +1 -1 1 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 2 2 4 5 1 2 3 3 3 3 1 0 0 0 1 1 2 2 1 2 4 2 2 2 2 1 1 1 1 1 1 0 0 1 1 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 -1 0 0 0 0 0 1 1 1 2 4 4 52 3 4 1 2 1 1 1 1 1 1 7 1 1 4 6 1 -1 2 0 0 0 0 1 0 1.18124 +10 2 1 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 2 2 2 2 4 1 1 1 4 4 4 4 1 0 0 0 3 2 2 3 1 2 4 4 4 2 2 1 1 2 1 1 2 0 0 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 2 1 3 1 1 1 0 0 0 0 0 1 1 0 1 0 1 0 1 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 1 2 2 34 3 4 4 2 6 2 8 2 1 4 12 4 2 2 2 2 -1 2 0 0 0 0 1 0 .48353 +10 10 5 4 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 2 3 4 1 5 3 4 3 3 1 0 0 0 4 4 3 3 3 3 3 3 4 4 3 2 3 2 3 3 2 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 2 2 1 1 1 0 0 0 0 0 0 1 1 1 1 0 1 1 0 0 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 6 5 64 2 3 8 7 1 1 1 10 1 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.11439 +2 -1 4 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 3 3 3 4 5 6 5 2 4 3 4 5 5 0 0 0 1 4 4 4 5 1 5 1 3 1 5 4 1 1 2 5 1 1 0 0 1 1 0 0 0 0 0 1 0 1 0 1 0 0 0 0 1 2 3 3 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 6 5 62 3 4 1 7 7 1 1 2 1 1 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.57177 +10 10 6 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 4 4 4 5 6 6 6 5 4 4 4 4 0 0 1 0 4 4 6 4 1 5 1 4 1 5 3 3 2 3 4 3 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 4 2 3 1 0 0 1 0 0 0 1 1 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 24 3 4 1 7 2 1 1 10 1 1 16 4 2 1 4 3 11 2 0 0 0 0 1 0 1.94957 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 3 2 2 4 4 4 4 2 3 3 4 3 4 1 0 0 0 2 2 2 3 2 2 5 3 4 5 4 1 1 1 5 5 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 1 1 5 1 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 40 1 2 4 11 4 1 1 1 1 4 14 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.35507 +6 -1 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 2 3 3 3 4 2 4 2 1 3 3 2 3 1 0 0 0 3 4 1 2 1 3 2 2 2 2 2 4 4 1 4 2 1 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 1 2 1 1 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 2 2 25 2 3 1 11 2 1 1 6 1 1 10 1 1 3 1 3 1 1 1 0 0 0 0 0 1.2498 +1 -1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 1 2 4 2 1 1 1 3 3 4 4 1 0 0 0 3 2 2 2 1 4 5 4 3 4 2 1 2 2 4 1 2 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 1 1 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 6 5 63 1 2 8 11 4 1 1 1 1 8 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 .68376 +2 -1 1 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 0 0 0 1 0 1 0 0 1 2 2 2 3 3 3 1 1 3 3 3 3 1 0 0 0 2 1 2 3 2 3 3 3 2 4 3 3 2 3 2 2 3 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 2 2 1 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 2 9 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 6 5 60 1 2 2 3 5 1 4 2 1 2 13 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.16749 +2 -1 1 7 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 0 0 0 1 0 1 0 0 2 2 2 2 2 4 4 2 2 2 2 2 2 0 1 0 0 2 2 3 4 2 4 3 3 2 4 3 1 2 2 2 2 4 0 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 1 1 2 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 1 0 0 1 0 2 4 4 54 1 2 4 3 4 1 4 2 2 1 13 1 1 3 1 3 1 1 0 0 0 1 0 0 1.06 +1 -1 2 8 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 1 1 1 0 0 1 1 1 3 4 2 3 2 3 4 3 3 2 1 0 0 0 2 2 2 4 2 2 3 3 2 4 3 1 2 2 4 1 3 1 0 0 1 0 1 0 0 0 1 0 0 1 0 1 0 0 0 1 2 1 2 1 0 0 1 0 0 0 1 1 1 1 1 1 0 1 0 1 0 1 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 1 0 0 1 0 1 3 3 43 1 2 4 3 4 1 1 1 1 4 15 4 2 4 2 2 -1 2 0 0 0 0 1 0 .76477 +10 10 6 7 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 3 3 3 2 3 2 3 2 3 3 3 2 2 1 0 0 0 3 3 3 3 3 3 3 3 3 3 4 1 2 5 3 3 3 1 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 3 3 2 2 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 2 2 33 3 4 2 2 1 1 1 10 2 1 10 1 1 3 1 5 4 1 1 1 0 1 0 0 .85198 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 4 4 3 1 2 3 3 3 3 1 0 0 0 2 4 4 4 1 4 2 3 2 4 4 2 2 2 4 3 2 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 2 2 4 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 91 1 2 8 2 7 1 1 1 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .81298 +9 -1 7 6 1 0 1 0 1 1 1 1 0 0 0 1 0 0 0 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 1 2 2 3 2 4 4 4 2 2 3 1 1 1 0 0 0 4 2 2 4 1 2 2 4 1 4 3 3 3 2 2 3 2 0 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 2 2 3 4 1 0 0 0 0 0 0 1 1 1 1 1 1 0 1 1 0 0 0 1 1 1 0 0 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 3 3 35 2 3 2 2 4 1 1 -1 1 2 16 2 1 3 1 3 1 1 1 0 0 0 0 0 .81923 +1 -1 1 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 1 1 0 0 0 0 0 1 0 0 0 0 2 2 2 2 3 2 3 1 2 3 3 2 3 1 0 0 0 2 3 2 4 2 4 5 3 2 2 3 2 3 3 2 2 4 1 0 1 0 1 0 0 0 0 1 0 0 1 1 0 0 0 0 4 4 4 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 1 1 0 0 0 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 64 2 3 2 9 3 1 1 1 1 2 12 2 1 4 2 2 -1 2 0 0 0 0 1 0 .47689 +6 -1 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 2 2 4 2 1 2 1 2 4 4 3 3 1 0 0 0 1 2 2 2 3 1 5 1 4 3 2 1 2 2 4 2 4 0 0 1 1 0 1 0 0 0 0 0 0 1 1 1 0 0 0 2 2 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 5 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 7 81 1 1 8 9 4 1 1 6 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .79762 +1 -1 1 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 2 2 2 3 3 3 3 1 2 3 3 4 4 1 0 0 0 2 2 3 3 1 4 4 3 3 3 3 2 1 2 2 2 2 1 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 2 2 4 1 1 1 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 -1 1 0 1 0 0 1 1 1 1 5 5 55 1 2 1 9 4 1 1 1 1 1 12 1 1 4 2 2 -1 2 0 0 0 0 1 0 .97094 +10 2 1 6 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 1 0 1 0 0 0 1 0 1 0 0 2 2 2 2 2 2 2 1 1 2 2 2 3 1 0 0 0 3 2 2 4 1 4 2 2 2 3 2 1 2 1 2 3 2 0 1 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 1 2 1 1 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 68 1 2 8 9 4 1 1 2 2 8 9 2 1 4 2 2 -1 2 0 0 0 0 1 0 .62404 +3 -1 4 8 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 3 2 3 1 3 3 3 3 3 1 0 0 0 3 2 3 4 1 4 4 4 2 4 4 2 2 2 4 2 2 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 3 1 1 4 1 0 0 0 0 0 0 1 0 1 1 0 1 1 0 0 0 0 0 1 0 1 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 79 1 1 8 7 4 1 1 3 1 8 10 2 1 4 4 1 -1 2 0 0 0 0 1 0 1.2807 +9 -1 9 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 3 3 3 3 3 1 0 0 0 4 4 6 6 6 6 6 6 6 6 3 2 3 2 4 3 2 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 2 6 4 1 0 0 0 0 0 0 1 1 1 1 0 0 1 0 0 0 0 0 0 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 2 2 33 3 4 2 7 3 1 1 -1 2 4 16 1 1 3 1 4 2 1 0 0 1 0 0 0 1.63977 +10 2 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 2 3 3 3 4 3 2 2 4 4 4 3 3 1 0 0 0 2 2 4 4 1 4 2 3 2 5 4 2 2 2 4 2 1 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 67 4 6 8 6 7 1 1 2 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .33995 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 1 0 0 0 1 0 1 0 0 1 2 2 2 4 3 4 2 2 2 3 3 3 1 0 0 0 2 2 2 4 1 4 2 4 1 5 2 2 1 2 2 2 2 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 2 4 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 67 2 3 8 6 1 1 1 1 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 .33869 +10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 4 3 3 4 5 4 4 2 4 4 4 3 3 0 1 0 0 4 2 4 5 1 4 2 4 1 5 5 4 1 1 5 1 1 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 3 3 4 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 28 3 4 1 6 1 1 1 10 2 1 12 1 1 2 2 2 -1 2 0 0 0 0 1 0 .93776 +9 -1 10 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 1 0 0 1 0 0 0 1 1 0 0 3 2 2 2 4 1 5 2 2 4 4 3 3 0 0 1 0 4 2 2 5 1 5 2 2 1 5 3 1 1 1 2 2 1 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 2 2 4 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 42 3 4 1 6 1 1 1 -1 1 1 11 3 2 4 6 1 -1 2 0 0 0 0 1 0 .67103 +10 2 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 3 4 1 2 2 2 1 2 1 0 0 0 1 1 2 4 1 2 1 2 3 4 2 1 4 1 2 2 4 0 0 1 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 2 1 1 1 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 7 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 6 5 60 3 4 1 7 1 1 1 2 1 1 11 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.37042 +9 -1 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 4 4 2 1 3 5 3 3 4 4 4 4 1 0 0 0 4 4 3 3 2 4 1 3 2 3 4 2 1 3 4 1 5 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 1 2 4 4 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 1 3 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 4 4 49 3 4 1 7 7 1 1 -1 1 1 12 1 1 3 1 5 2 1 0 0 0 1 0 0 2.86919 +10 3 4 5 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 0 0 0 0 0 1 0 0 3 2 2 3 4 3 4 1 2 2 3 3 4 1 0 0 0 4 2 2 5 2 5 2 2 1 5 2 1 1 2 2 4 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 2 2 3 1 1 0 0 0 0 0 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 1 6 5 64 1 2 8 10 4 1 1 3 1 8 17 2 1 4 2 3 11 2 0 0 0 0 1 0 .66217 +6 -1 1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 1 1 0 0 0 0 0 1 0 0 0 0 1 1 1 3 4 1 4 1 2 2 3 3 3 0 1 0 0 2 1 4 5 1 2 4 4 1 5 4 2 2 2 4 4 3 0 0 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 1 1 1 4 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 7 2 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 7 6 73 1 1 3 7 3 1 1 6 1 3 13 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.20182 +10 10 8 8 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 2 2 2 3 3 2 3 1 1 5 5 2 4 1 0 0 0 4 4 6 6 6 6 6 6 6 6 3 1 1 2 3 6 3 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 3 3 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 10 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 58 1 2 10 7 4 1 4 10 1 10 16 5 2 4 6 1 -1 2 0 0 0 0 1 0 1.26937 +9 -1 8 7 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 2 2 2 3 4 4 4 3 2 4 4 2 3 1 0 0 0 4 2 5 5 1 5 2 5 1 5 4 1 2 2 5 2 1 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 2 2 4 4 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 65 2 3 8 7 1 1 1 -1 1 8 13 2 1 4 2 2 -1 2 0 0 0 0 1 0 .86295 +2 -1 7 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 3 3 3 2 3 2 1 1 4 2 3 2 2 1 0 0 0 3 2 2 1 1 2 3 2 2 1 3 1 1 1 2 3 1 0 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 2 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 64 4 6 10 5 7 2 10 2 1 10 16 3 2 3 3 4 2 1 0 0 0 1 0 0 .28741 +2 -1 3 10 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 3 3 3 3 3 3 3 3 4 4 3 3 1 0 0 0 3 4 3 3 2 3 3 3 3 4 3 2 2 2 3 2 2 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 1 0 0 3 3 3 2 1 1 0 1 0 1 0 1 1 1 1 0 1 1 1 0 0 0 0 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 28 1 2 1 5 1 1 1 2 1 1 11 1 1 2 2 2 -1 2 0 0 0 0 1 0 2.08507 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 2 3 4 5 2 1 4 4 4 4 1 0 0 0 3 2 1 4 1 3 1 1 5 1 1 1 3 5 5 4 5 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 82 4 6 8 8 7 1 1 -1 1 8 4 2 1 4 2 2 -1 2 0 0 0 0 1 0 .85779 +3 -1 1 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 2 3 3 2 3 4 4 2 2 2 3 2 2 1 0 0 0 2 3 3 2 1 3 4 2 2 5 3 2 1 4 2 1 1 0 0 0 1 0 1 0 0 0 0 1 0 1 0 1 0 0 0 2 2 1 1 1 0 0 1 0 0 0 1 0 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 6 5 64 3 4 8 8 1 1 1 3 2 1 10 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.22235 +2 -1 1 8 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 4 3 3 2 3 3 2 2 2 3 3 3 3 1 0 0 0 3 3 3 3 3 3 3 3 3 3 4 1 2 2 2 2 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 2 2 2 3 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 6 2 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 5 5 56 2 3 1 6 7 1 1 2 2 1 16 1 1 4 2 2 -1 2 0 0 0 0 1 0 .80346 +10 2 1 3 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 2 4 2 4 2 2 4 4 4 4 1 0 0 0 3 4 3 3 3 3 3 3 2 3 3 1 1 1 2 1 1 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 1 1 1 1 0 0 1 0 0 0 1 1 1 1 1 1 1 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 69 2 3 8 7 7 1 1 2 2 11 9 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.28647 +10 10 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 1 0 1 0 0 2 2 2 3 2 4 2 2 1 2 3 1 1 1 0 0 0 4 2 1 4 1 2 4 2 3 3 4 1 1 2 3 1 2 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 2 1 3 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 1 0 1 1 1 0 2 7 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 1 1 24 3 4 1 6 3 1 1 10 2 1 13 2 1 1 4 3 11 2 0 0 0 0 1 0 1.19921 +4 -1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 1 0 0 1 1 1 0 0 2 2 2 3 2 4 4 2 1 3 3 3 3 1 0 0 0 2 2 4 4 1 4 3 4 2 4 4 3 3 2 4 2 2 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 2 3 4 1 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 0 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 5 5 58 2 3 10 6 4 1 1 4 2 1 9 2 1 4 2 2 -1 2 0 0 0 0 1 0 .35829 +10 10 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 2 2 3 2 2 5 4 3 4 4 3 3 0 1 0 0 3 4 4 5 1 5 2 2 3 5 3 1 1 1 5 1 1 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 2 2 1 5 1 1 0 1 0 1 0 1 1 1 1 0 1 0 1 1 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 50 1 2 4 2 1 1 1 10 1 4 13 1 1 4 2 4 11 2 0 0 0 0 1 0 1.14237 +1 -1 1 3 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 3 2 4 1 2 1 2 3 3 4 4 1 0 0 0 3 1 1 3 1 2 3 2 3 3 3 3 3 2 3 2 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 2 4 1 0 0 0 0 0 0 1 0 1 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 82 1 2 8 7 4 1 1 1 1 8 10 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.08211 +2 -1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 2 1 2 3 2 1 2 2 2 3 3 1 0 0 0 4 1 1 4 2 4 4 1 3 3 2 2 5 2 2 1 3 1 0 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 5 5 5 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 70 2 3 8 6 3 1 1 2 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .32851 +10 10 1 1 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 1 1 1 0 0 0 0 1 0 1 1 1 1 0 0 2 2 2 2 4 4 4 3 4 3 3 3 3 1 0 0 0 4 2 2 3 1 4 3 3 3 2 2 3 3 3 4 2 1 1 1 0 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 1 1 4 1 1 0 0 1 0 0 0 1 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 -1 0 0 0 0 0 1 1 1 1 4 4 53 1 2 1 6 7 1 1 10 2 1 13 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.05622 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 1 0 0 1 1 0 1 0 0 1 1 2 3 4 2 3 2 1 3 3 3 3 1 0 0 0 1 2 4 5 1 5 2 4 2 5 3 1 2 5 5 2 1 0 0 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 2 5 5 5 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 0 0 1 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 -1 0 0 0 0 0 1 1 1 2 6 5 60 2 3 1 6 7 1 1 2 1 1 9 2 1 4 2 2 -1 2 0 0 0 0 1 0 .78335 +10 10 1 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 3 2 4 1 2 3 3 3 3 0 0 1 0 5 2 1 2 2 4 4 2 4 2 2 3 4 1 2 2 2 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 3 1 1 0 0 0 0 0 0 1 1 0 1 1 1 0 1 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 64 1 2 1 6 4 1 4 10 2 1 13 2 1 4 2 2 -1 2 0 0 0 0 1 0 .57861 +2 -1 1 1 0 0 0 0 1 1 1 0 0 0 1 1 0 0 0 1 0 1 1 1 1 1 0 0 1 1 1 1 0 0 2 2 2 3 4 3 3 1 3 4 3 2 2 1 0 0 0 3 2 2 4 2 2 4 4 2 3 4 1 1 3 2 2 2 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 2 1 1 1 0 1 0 0 0 1 1 1 1 1 1 0 1 1 1 0 0 1 0 1 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 30 1 2 5 2 5 1 1 2 2 1 12 4 2 2 2 2 -1 2 0 0 0 0 1 0 1.12431 +1 -1 1 5 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 1 0 1 1 0 1 0 0 0 1 0 1 0 0 3 2 2 2 3 2 3 1 2 3 3 2 3 1 0 0 0 4 2 2 3 1 4 2 3 3 3 3 1 1 2 3 2 3 0 0 1 1 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 1 1 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 1 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 66 2 3 11 7 4 1 1 1 2 8 17 2 1 4 2 4 11 2 0 0 0 0 1 0 1.3916 +10 1 3 4 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 2 2 2 2 3 2 2 2 2 3 3 3 3 1 0 0 0 3 1 2 2 1 2 4 2 2 4 4 1 2 1 2 4 2 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 67 3 4 8 8 6 1 1 1 1 8 9 2 1 4 2 2 -1 2 0 0 0 0 1 0 .62651 +6 -1 1 4 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 2 2 2 2 2 4 2 2 2 3 3 3 3 1 0 0 0 4 1 4 4 1 4 4 4 1 4 4 2 1 1 4 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 2 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 7 84 3 4 8 8 6 1 1 6 1 8 3 2 1 4 6 1 -1 2 0 0 0 0 1 0 .69758 +2 -1 4 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 3 4 2 5 4 3 3 3 3 3 3 3 1 0 0 0 3 4 6 3 6 6 6 6 6 6 4 2 2 2 3 2 2 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 2 2 4 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 7 85 4 5 8 7 7 1 1 2 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.99592 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 3 4 3 2 3 3 3 3 3 1 0 0 0 1 4 3 3 2 3 3 3 2 3 4 1 1 1 3 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 3 2 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 4 4 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 3 3 40 4 6 10 5 7 1 1 2 1 10 1 4 2 3 3 5 3 1 0 0 1 1 0 0 1.03287 +2 -1 1 4 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 1 1 4 5 5 5 1 1 4 4 1 2 1 0 0 0 2 1 1 2 1 2 2 3 1 5 5 1 1 1 5 5 1 1 0 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 7 77 4 5 8 6 7 1 1 2 2 2 16 2 1 4 2 3 11 2 0 0 0 0 1 0 .44187 +11 11 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 3 3 3 2 3 3 2 3 3 2 2 5 1 0 0 0 2 2 4 5 1 5 2 3 2 2 4 1 4 2 2 3 2 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 2 1 6 2 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 4 4 53 4 5 9 6 7 1 1 11 2 1 17 2 1 4 2 4 11 2 0 0 0 0 1 0 .58262 +1 -1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 3 3 2 3 3 4 2 2 3 4 2 2 1 0 0 0 4 2 3 3 2 3 3 2 2 4 3 1 2 3 2 1 2 0 0 1 1 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 2 1 1 1 1 0 1 0 1 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 9 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 32 1 2 1 8 3 1 1 1 1 1 13 1 1 3 1 3 1 1 1 0 0 0 0 0 2.29246 +8 -1 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 1 0 0 0 0 2 2 1 2 4 5 5 1 5 4 4 1 1 1 0 0 0 4 4 1 5 3 5 1 2 1 5 5 1 1 1 5 5 1 1 0 1 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 1 3 5 1 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 9 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 5 5 58 2 3 1 6 1 1 1 8 2 1 11 1 1 4 2 2 -1 2 0 0 0 0 1 0 .61991 +1 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 2 2 2 3 2 2 3 3 3 3 1 0 0 0 3 2 4 4 2 4 4 4 2 4 4 2 2 2 2 2 2 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 2 2 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 7 7 82 1 2 8 8 4 1 1 1 1 8 4 4 2 4 6 1 -1 2 0 0 0 0 1 0 1.55385 +10 6 3 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 2 3 2 3 4 1 2 2 2 3 3 1 0 0 0 2 2 4 4 2 4 2 3 2 4 4 4 2 2 2 2 2 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 2 3 3 2 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 4 5 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 7 90 2 3 8 8 1 1 1 6 1 8 6 2 1 4 2 2 -1 2 0 0 0 0 1 0 .67438 +1 -1 2 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 2 2 2 3 4 2 2 3 3 3 3 1 0 0 0 3 2 4 4 4 4 2 4 2 4 3 1 2 2 2 2 2 1 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 2 2 2 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 5 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 5 5 55 2 3 1 8 3 1 1 1 1 1 10 1 1 4 2 2 -1 2 0 0 0 0 1 0 .97156 +10 10 1 1 1 0 1 1 1 1 0 0 0 0 0 1 0 0 0 1 1 1 1 1 1 1 1 0 0 1 1 1 0 0 3 4 4 4 5 2 5 1 4 3 3 4 4 1 0 0 0 4 3 2 5 1 5 1 5 3 5 3 1 1 1 5 1 1 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 3 3 4 1 1 0 0 1 0 1 0 1 1 1 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 41 1 2 1 6 7 1 1 10 2 1 17 1 1 3 1 5 3 1 1 0 1 1 0 0 .83081 +2 -1 5 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 3 3 3 4 3 3 3 3 3 3 3 4 4 1 0 0 0 2 4 3 3 3 3 3 3 3 3 5 1 1 1 4 1 1 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 3 5 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 53 4 5 2 6 2 1 1 2 1 2 7 1 1 3 5 3 1 1 0 0 0 1 0 0 .48617 +9 -1 10 10 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 0 0 0 0 0 0 0 0 2 3 2 4 5 3 5 1 1 4 4 3 3 1 0 0 0 4 2 2 5 1 3 1 4 4 5 5 5 5 1 5 4 1 0 0 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 4 2 3 5 1 1 0 0 0 0 0 1 1 1 1 1 0 1 0 0 0 0 1 0 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 44 1 1 1 2 5 1 1 -1 1 1 17 1 1 3 1 4 2 1 0 0 0 1 0 0 2.13534 +6 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 1 0 0 0 0 1 0 0 0 0 1 2 2 4 2 2 3 2 2 4 4 2 2 1 0 0 0 1 1 5 5 1 5 3 2 3 4 4 1 1 1 5 1 1 1 1 0 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 3 3 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 7 86 1 1 8 2 6 1 4 6 2 1 17 7 -1 4 6 2 11 2 0 0 0 0 1 0 1.21304 +2 -1 4 6 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 3 3 3 4 4 2 2 1 3 3 3 2 2 0 1 0 0 2 2 2 3 1 2 5 3 1 3 2 2 1 3 2 4 3 1 0 1 1 0 0 0 0 0 0 0 1 0 1 0 1 0 0 2 2 2 2 1 1 1 1 0 0 0 1 1 1 1 0 1 1 1 1 0 1 1 1 0 1 1 1 0 3 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 42 1 2 2 7 2 1 1 2 2 1 17 5 2 3 5 3 1 1 0 0 1 0 0 0 1.01051 +10 10 5 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 3 3 2 2 2 2 2 2 2 2 3 3 1 0 0 0 4 4 3 3 3 3 3 3 3 3 2 3 2 2 5 3 4 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 2 2 2 2 1 1 0 1 0 0 0 1 0 1 1 1 1 0 0 0 0 0 1 1 0 0 0 0 0 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 34 1 2 4 7 1 2 18 10 2 1 16 4 2 3 4 4 1 1 1 0 0 0 0 0 .76501 +6 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 1 1 1 0 0 2 2 2 2 4 2 2 1 2 3 4 3 3 1 0 0 0 2 1 2 4 5 1 5 4 5 5 3 5 5 2 1 1 4 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 1 1 2 1 1 0 1 0 0 0 1 1 1 1 0 1 1 1 1 0 0 1 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 35 1 2 4 7 1 1 1 6 1 4 13 4 2 2 2 2 -1 2 0 0 0 0 1 0 1.01051 +9 -1 1 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 0 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 1 1 1 3 4 5 4 1 1 4 4 1 1 0 0 1 0 3 2 2 5 1 1 2 2 4 5 5 1 1 1 5 2 1 0 0 0 1 1 0 0 0 0 0 1 1 0 1 0 0 0 0 2 1 1 5 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 63 1 2 8 6 5 1 1 -1 1 8 6 1 1 4 4 1 -1 2 0 0 0 0 1 0 .29906 +10 10 1 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 0 0 0 1 0 0 0 0 2 2 2 2 4 4 4 2 4 2 4 2 3 1 0 0 0 4 2 4 4 1 3 3 4 2 4 3 2 2 3 2 4 4 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 1 2 2 1 1 0 1 0 0 0 1 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 4 4 48 2 3 1 6 6 1 1 10 1 1 13 1 1 3 1 4 2 1 0 0 0 1 0 0 .82978 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 2 2 2 2 2 4 3 2 2 2 2 3 3 1 0 0 0 3 2 2 2 2 4 2 2 2 3 2 2 2 2 2 2 2 0 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 2 2 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 72 2 3 8 6 6 1 1 1 1 8 6 2 1 4 2 2 -1 2 0 0 0 0 1 0 .26726 +5 -1 5 4 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 2 2 3 4 2 4 4 3 4 2 2 2 2 1 0 0 0 4 1 2 5 1 4 1 2 3 4 4 1 3 2 3 2 2 1 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 2 2 4 2 1 1 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 9 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 1 1 1 0 1 1 1 1 1 1 1 1 1 24 2 3 5 6 6 1 1 5 2 4 9 2 1 1 4 5 11 2 0 0 0 0 1 0 .37159 +1 -1 1 1 0 0 0 1 0 1 1 0 0 0 1 0 0 0 0 1 0 1 1 0 1 1 0 0 1 1 0 0 0 0 1 2 3 3 2 4 4 2 2 2 3 2 2 1 0 0 0 1 2 4 3 1 4 4 2 1 4 2 1 1 2 4 2 1 1 1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 1 2 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 7 6 73 2 3 8 6 6 1 1 1 2 8 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 .48973 +4 -1 5 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 3 3 3 3 3 3 4 4 4 4 1 0 0 0 4 2 3 5 1 5 1 2 1 5 5 4 5 3 3 3 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 1 1 0 0 1 0 0 0 1 0 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 6 5 64 3 4 1 6 2 1 1 4 1 1 10 5 2 4 2 2 -1 2 0 0 0 0 1 0 .57919 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 2 1 1 2 3 1 3 3 4 3 3 1 0 0 0 1 1 1 2 5 1 5 1 5 1 3 2 2 2 1 2 5 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 1 4 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 0 0 0 1 0 0 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 7 6 65 1 2 1 2 4 1 1 2 1 1 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.28692 +10 10 2 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 3 3 3 3 3 3 3 3 3 3 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 3 3 2 1 0 0 1 0 0 0 1 0 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 33 3 4 2 6 2 1 1 10 1 2 2 4 2 3 5 2 1 1 0 0 1 0 0 0 .40742 +10 10 2 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 3 3 2 3 3 2 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 5 1 3 3 2 1 1 0 0 0 1 0 0 0 0 1 0 0 1 0 1 0 0 0 3 3 3 1 1 0 0 1 0 0 0 1 0 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 37 2 3 2 6 2 1 1 10 1 2 6 1 1 3 5 3 2 1 0 0 1 1 0 0 .39951 +1 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 4 4 3 3 5 3 2 5 3 3 3 3 1 0 0 0 4 1 2 4 1 4 4 4 2 4 4 1 1 3 3 4 1 1 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 4 5 2 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 85 4 6 8 6 7 1 1 1 1 8 4 2 1 4 6 1 -1 2 0 0 0 0 1 0 .44527 +2 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 2 2 4 4 4 3 3 3 3 3 1 0 0 0 3 4 3 3 3 3 3 3 2 3 3 1 2 3 2 3 4 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 3 3 3 1 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 6 5 62 2 3 8 6 2 1 1 2 1 8 7 2 1 4 6 1 -1 2 0 0 0 0 1 0 .42422 +7 -1 3 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 4 4 4 4 5 5 5 1 1 4 4 3 3 1 0 0 0 3 4 6 6 6 6 6 6 6 6 5 1 1 1 5 1 1 1 0 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 4 1 5 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 6 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 55 3 4 1 10 3 1 1 7 1 1 10 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.57526 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 4 4 4 4 4 2 3 4 1 1 1 0 0 0 4 2 2 5 1 2 1 5 1 5 3 1 2 3 3 2 2 0 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 2 2 3 4 1 0 0 1 0 0 0 1 1 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 20 4 5 2 2 1 1 1 -1 1 2 4 1 1 1 4 2 11 2 0 0 0 0 1 0 .77242 +2 -1 1 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 3 3 2 3 1 2 3 3 3 3 1 0 0 0 2 1 3 3 1 4 4 2 3 3 4 2 1 1 2 1 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 1 2 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 68 3 4 8 2 3 1 1 2 1 8 8 2 1 4 2 2 -1 2 0 0 0 0 1 0 .78892 +10 2 6 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 2 2 2 3 2 4 4 2 3 3 3 3 3 1 0 0 0 3 3 3 3 4 4 3 3 3 4 4 1 1 2 3 2 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 1 4 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 4 4 52 3 4 1 7 7 1 1 2 2 1 10 2 1 3 1 5 2 1 0 0 0 1 0 0 2.39769 +2 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 2 2 3 2 4 5 2 3 2 3 3 3 1 0 0 0 1 1 2 2 2 4 4 2 2 2 2 2 4 2 2 2 3 1 0 1 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 2 1 2 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 9 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 7 81 3 4 8 7 2 1 1 2 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 2.26355 +2 -1 8 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 0 0 0 1 0 1 0 0 0 3 3 3 4 5 5 5 5 3 4 4 2 2 0 0 0 1 2 4 5 5 6 5 6 6 6 5 6 1 1 1 5 2 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 6 6 4 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 -1 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 18 4 6 5 11 2 1 1 2 2 7 5 3 2 1 4 2 11 2 0 0 0 0 1 0 1.02939 +2 -1 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 2 2 2 2 3 2 3 2 2 3 3 2 3 1 0 0 0 2 3 2 2 3 3 4 2 4 2 4 3 2 3 3 2 3 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 1 2 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 1 0 1 1 0 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 4 4 53 1 2 9 11 4 1 1 2 2 9 11 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.11054 +1 -1 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 2 2 4 2 2 2 2 2 2 4 4 1 0 0 0 2 2 2 2 1 3 4 2 4 3 3 2 2 2 1 1 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 3 4 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 95 4 6 8 11 7 1 1 1 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .75453 +11 10 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 2 2 2 2 4 2 1 2 3 3 3 3 1 0 0 0 2 1 4 2 1 1 5 2 5 2 2 1 1 1 2 4 2 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 2 1 3 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 7 6 72 2 3 8 11 6 1 1 10 2 8 16 1 1 4 2 2 -1 2 0 0 0 0 1 0 .54645 +1 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 1 0 0 0 1 0 0 0 0 2 3 2 2 2 2 3 1 2 4 4 3 3 1 0 0 0 3 2 2 5 1 5 1 5 1 5 5 1 1 1 2 4 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 4 4 49 4 5 10 7 7 1 1 1 1 10 10 5 2 3 1 5 3 1 0 0 1 1 0 0 1.25233 +1 -1 1 3 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 1 0 1 0 0 1 0 0 1 0 1 0 0 0 0 2 2 3 1 4 2 1 1 1 3 3 3 3 1 0 0 0 2 2 2 3 1 3 4 2 4 2 1 1 2 2 2 1 4 0 0 1 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 6 5 64 3 4 1 7 1 1 1 1 2 1 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.93197 +1 -1 1 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 4 2 4 2 4 4 4 4 4 1 0 0 0 2 4 1 4 1 3 5 2 2 3 4 1 2 2 3 2 4 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 74 2 3 8 8 7 1 1 1 1 8 6 2 1 4 2 2 -1 2 0 0 0 0 1 0 .51486 +1 -1 7 10 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 0 0 1 1 0 0 0 0 1 2 2 4 5 2 2 1 1 2 3 4 1 1 0 0 0 3 2 2 4 1 4 5 2 4 5 5 1 1 4 4 2 4 1 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 1 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 57 4 5 1 8 2 1 1 1 1 1 8 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.9048 +9 -1 10 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 3 3 3 3 4 4 2 4 2 3 3 2 2 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 2 4 4 2 2 4 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 3 1 2 0 0 0 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 1 0 0 1 0 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 26 2 3 1 7 2 1 1 -1 2 1 12 1 1 2 2 2 -1 2 0 0 0 0 1 0 2.02438 +11 11 1 6 1 0 1 0 1 1 1 0 0 0 1 0 1 0 0 1 1 1 1 1 0 1 0 0 0 1 0 1 0 0 2 2 2 3 3 2 4 2 2 2 3 2 3 1 0 0 0 2 2 1 4 1 4 1 2 1 4 5 2 1 1 5 1 2 0 1 1 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 2 9 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 5 5 56 1 1 9 7 4 1 1 11 2 1 17 2 1 4 2 3 11 2 0 0 0 0 1 0 2.06354 +4 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 5 5 4 4 4 4 4 4 4 1 0 0 0 1 4 5 5 1 5 1 1 1 5 5 1 1 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 4 4 54 4 5 10 6 1 1 1 4 2 8 17 2 1 4 2 3 11 2 0 0 0 0 1 0 .58262 +10 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 4 1 5 5 5 5 2 3 2 3 1 0 0 0 1 4 2 5 1 5 1 5 2 5 5 1 1 2 5 4 3 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 4 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 7 7 94 4 5 8 6 2 1 1 2 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 .37562 +4 -1 1 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 2 2 2 3 4 2 4 2 2 3 3 2 2 1 0 0 0 2 2 3 5 1 5 2 3 2 4 4 2 2 4 3 1 2 0 0 1 1 0 1 0 0 0 0 1 1 1 0 0 0 0 0 1 1 3 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 59 2 3 8 6 4 1 1 4 2 1 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .29149 +2 -1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 2 4 4 3 4 2 2 2 4 2 3 1 0 0 0 2 2 3 5 1 5 1 5 1 5 4 1 1 1 4 1 5 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 1 2 1 0 0 0 0 0 0 1 1 1 1 0 1 1 1 1 0 0 0 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 18 2 3 5 6 3 1 1 2 2 1 17 3 2 1 4 2 11 2 0 0 0 0 1 0 .29263 +9 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 2 4 4 4 4 4 3 3 4 4 1 0 0 0 4 2 4 4 2 4 4 4 2 4 4 2 1 2 2 1 5 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 3 4 3 4 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 7 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 6 5 64 4 5 8 6 2 1 1 -1 2 1 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .53547 +11 11 1 1 1 1 1 1 0 1 0 1 1 1 1 0 1 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 3 4 4 2 2 3 3 2 2 1 0 0 0 3 4 3 3 2 4 3 2 2 4 4 1 3 5 3 2 3 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 2 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 1 0 0 1 0 1 5 5 57 2 3 2 3 4 1 1 11 1 2 16 4 2 4 7 1 -1 2 0 0 0 0 1 0 .56096 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 3 4 4 3 4 4 4 4 4 4 4 0 1 0 0 4 4 3 3 1 5 4 3 2 3 4 2 1 1 4 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 4 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 -1 3 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 1 1 21 4 6 7 7 7 1 1 -1 1 7 17 5 2 1 4 1 -1 2 0 0 0 0 1 0 1.03513 +6 -1 1 6 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 2 3 2 3 3 1 2 2 3 3 3 1 0 0 0 4 2 2 3 2 2 1 2 2 3 3 1 1 1 4 4 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 4 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 7 6 72 2 3 8 7 3 1 1 6 1 8 6 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.04662 +11 1 6 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 3 3 2 2 2 4 1 2 2 2 3 3 1 0 0 0 3 1 2 3 2 1 4 2 4 2 3 1 2 1 2 2 3 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 2 2 4 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 1 0 1 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 64 2 3 8 7 3 1 4 1 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .76571 +11 11 2 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 3 4 3 4 4 2 1 2 3 2 2 1 0 0 0 4 1 2 5 1 4 4 3 4 2 4 1 1 1 4 3 2 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 2 2 2 1 1 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 4 7 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 51 2 3 1 7 7 1 1 11 1 1 17 5 2 4 4 1 -1 2 0 0 0 0 1 0 1.43451 +6 -1 5 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 1 1 0 0 0 0 3 3 3 4 3 4 5 4 5 2 4 3 4 1 0 0 0 3 4 4 5 1 5 1 3 3 5 5 1 1 1 5 2 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 4 3 4 4 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 5 3 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 7 6 69 3 4 8 4 7 1 1 6 2 1 16 3 2 4 2 2 -1 2 0 0 0 0 1 0 1.2067 +10 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 2 2 3 4 4 4 2 4 3 3 3 3 1 0 0 0 4 4 4 3 3 3 3 3 3 4 4 1 1 2 2 2 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 1 1 2 6 5 62 2 3 8 6 6 1 1 10 1 8 17 2 1 4 4 1 -1 2 0 0 0 0 1 0 .36062 +10 10 5 6 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 4 4 4 3 3 3 3 2 3 3 3 3 3 1 0 0 0 4 4 3 3 3 3 3 3 3 3 4 1 1 1 3 2 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 2 1 1 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 7 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 49 2 3 5 6 7 1 1 10 1 5 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 .39017 +1 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 0 2 2 2 3 2 3 4 1 3 3 4 1 1 1 0 0 0 2 1 2 4 2 2 4 3 4 3 3 1 4 1 4 3 2 0 0 1 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 1 1 2 1 1 1 0 1 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 4 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 1 1 24 2 3 1 4 3 1 1 1 2 1 17 3 2 1 4 3 11 2 0 0 0 0 1 0 1.84476 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 4 2 4 1 3 3 3 3 3 1 0 0 0 3 4 2 4 1 3 3 3 1 3 4 2 3 1 3 4 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 1 1 1 0 1 0 0 0 1 1 1 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 7 6 68 1 2 8 6 6 1 1 1 2 8 17 2 1 4 2 3 11 2 0 0 0 0 1 0 .62337 +10 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 2 2 1 3 3 3 3 1 4 2 4 2 2 1 0 0 0 4 3 2 5 4 3 3 3 2 4 3 1 1 3 2 2 4 0 1 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 3 3 5 1 1 1 0 1 1 1 0 1 1 1 1 1 1 0 1 0 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 -1 0 0 0 0 0 1 1 1 2 3 3 39 2 3 2 6 4 1 1 10 2 1 17 1 1 3 1 4 2 1 0 1 1 0 0 0 .57768 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 2 2 2 3 1 3 1 1 1 3 3 1 2 1 0 0 0 2 4 3 3 3 3 3 3 3 3 3 1 1 1 1 3 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 3 3 3 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 -1 7 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 1 1 23 4 6 7 4 6 1 1 -1 2 9 4 3 2 3 1 4 2 1 1 0 0 0 0 0 1.01318 +10 2 3 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 3 2 2 3 5 5 4 2 2 3 4 2 3 1 0 0 0 3 2 4 4 1 3 3 3 2 4 5 1 1 1 3 4 1 0 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 2 2 4 1 1 0 1 0 0 0 1 1 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 2 2 31 2 3 1 4 1 1 1 2 1 1 8 3 2 3 3 4 3 1 0 1 1 1 0 0 1.52138 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 1 0 0 0 1 0 1 0 0 2 2 3 2 2 3 3 2 2 2 2 2 2 1 0 0 0 2 4 1 2 2 3 4 2 1 4 4 3 1 1 2 2 3 0 1 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 2 2 1 1 0 0 1 0 0 0 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 6 5 61 3 4 1 10 3 1 1 1 2 1 13 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.84019 +11 11 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 3 3 3 3 2 4 3 1 2 3 3 2 2 1 0 0 0 3 2 1 3 2 5 3 2 2 4 4 1 2 2 1 1 2 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 3 3 3 1 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 2 4 4 50 1 1 11 11 5 1 1 11 2 1 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.28144 +5 -1 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 1 1 1 1 1 0 1 1 1 0 0 1 2 2 4 4 4 4 2 3 3 3 2 2 1 0 0 0 3 3 4 4 2 2 2 3 1 4 4 2 2 2 3 2 3 1 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 2 2 1 1 1 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 49 2 3 4 11 3 1 1 5 1 4 9 2 1 3 1 3 1 1 0 1 0 0 0 0 .77778 +2 -1 5 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 2 3 3 2 2 2 2 3 2 3 1 0 0 0 3 2 2 2 3 3 2 2 2 2 3 4 2 2 3 2 3 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 2 2 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 4 4 47 4 6 7 5 2 1 1 2 1 7 3 4 2 4 4 1 -1 2 0 0 0 0 1 0 1.03241 +2 -1 3 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 1 0 0 0 1 0 0 0 0 3 3 3 4 5 2 4 1 1 4 4 3 3 1 0 0 0 4 1 2 3 1 2 4 2 4 3 3 1 2 2 4 1 4 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 2 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 1 0 1 0 0 0 0 0 2 3 3 42 2 3 1 5 4 1 1 2 1 1 17 1 1 3 1 4 2 1 0 1 1 0 0 0 1.52057 +10 10 1 10 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 2 2 4 3 2 3 5 2 4 4 3 3 1 0 0 0 4 4 3 5 1 5 2 3 3 5 5 1 1 1 4 2 1 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 2 1 3 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 7 7 79 4 6 8 3 7 1 1 10 1 8 16 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.04138 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 4 3 3 4 5 5 4 5 4 4 4 4 4 1 0 0 0 4 4 5 5 1 5 2 5 2 5 5 1 1 1 5 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 2 5 5 5 1 0 0 1 0 0 0 1 1 1 1 0 1 1 1 1 1 0 0 1 0 0 0 0 0 1 8 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 24 4 5 1 6 7 1 1 -1 1 1 6 5 2 1 4 1 -1 2 0 0 0 0 1 0 .76984 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 3 4 3 3 4 4 4 4 4 1 0 0 0 4 4 3 5 1 3 2 4 3 3 4 1 2 2 2 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 5 5 2 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 60 4 6 8 3 7 1 1 -1 1 8 2 3 2 4 6 1 -1 2 0 0 0 0 1 0 1.03843 +2 -1 1 7 0 0 1 1 1 1 0 1 0 1 0 0 0 0 0 1 1 1 1 1 0 1 1 0 1 1 1 1 0 0 2 3 3 4 4 4 4 2 2 2 3 2 2 1 0 0 0 2 4 4 5 1 5 1 4 2 5 5 1 1 4 5 4 1 0 1 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 2 4 2 2 1 0 0 0 0 0 0 1 1 1 1 0 0 0 1 0 0 0 1 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 1 0 1 1 1 1 1 1 5 5 55 1 2 1 3 4 1 4 2 1 1 14 1 1 3 1 4 2 1 1 0 1 0 0 0 1.70604 +2 -1 1 4 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 1 1 1 1 1 1 1 0 0 2 2 2 3 2 4 3 3 2 3 4 2 2 1 0 0 0 3 2 4 4 1 5 4 2 2 4 4 2 2 1 2 2 1 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 2 2 4 2 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 1 0 0 1 0 2 4 4 50 2 3 1 3 4 2 15 2 1 1 13 1 1 4 2 3 11 2 0 0 0 0 1 0 .78704 +9 -1 8 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 3 2 3 2 2 2 2 3 3 4 3 4 1 0 0 0 3 4 2 4 6 3 6 4 3 2 3 2 2 2 2 2 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 56 4 6 7 5 7 2 8 -1 1 7 3 5 2 4 6 1 -1 2 0 0 0 0 1 0 .60014 +2 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 3 5 5 5 5 4 4 4 3 4 1 0 0 0 4 4 5 3 5 5 3 3 5 3 5 4 5 4 5 2 1 0 1 1 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 2 1 3 5 1 0 0 1 0 0 0 1 1 1 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 7 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 1 1 1 2 3 3 40 4 5 1 6 1 1 1 2 2 1 11 1 1 3 1 3 1 1 0 0 0 1 0 0 .75757 +10 10 10 10 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 1 0 0 0 0 0 3 3 4 4 4 5 5 5 5 4 4 2 3 1 0 0 0 4 4 3 3 3 3 3 3 4 5 5 1 1 1 5 1 1 0 0 1 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 2 1 5 5 1 0 0 1 0 0 0 1 1 1 1 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 26 4 5 1 6 3 1 1 10 1 1 6 5 2 1 4 1 -1 2 0 0 0 0 1 0 .63489 +1 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 2 3 2 1 2 2 1 1 2 3 2 2 1 0 0 0 2 1 2 2 2 2 4 2 3 3 4 2 2 2 2 2 4 0 1 1 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 1 2 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 7 6 65 1 2 8 7 1 1 1 1 2 1 13 2 1 4 2 3 11 2 0 0 0 0 1 0 1.51383 +2 -1 7 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 3 2 2 1 2 4 4 2 4 3 1 0 0 0 4 4 5 3 2 5 2 4 5 3 4 2 1 1 1 2 1 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 3 1 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 28 4 6 7 6 1 1 1 2 2 7 16 5 2 1 4 2 11 2 0 0 0 0 1 0 .61982 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 3 3 3 4 5 2 1 2 3 3 3 3 1 0 0 0 2 4 1 2 1 5 4 3 2 5 5 1 1 1 2 2 1 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 7 75 3 4 8 1 7 1 1 2 1 8 6 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.71701 +10 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 2 2 4 4 2 3 2 3 3 3 2 2 1 0 0 0 3 1 4 5 1 5 1 4 2 5 4 1 2 2 4 1 1 0 0 1 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 2 2 3 2 1 1 1 1 0 0 0 1 1 1 0 0 1 1 0 0 0 0 1 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 2 2 33 2 3 1 1 4 1 1 10 1 1 17 1 1 3 1 3 1 1 0 1 0 0 0 0 3.90112 +4 -1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 2 4 4 5 5 5 5 2 2 2 2 1 0 0 0 4 4 5 5 1 5 4 4 5 5 4 2 2 1 1 2 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 3 2 2 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 1 1 0 0 0 1 1 1 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 47 4 6 7 6 1 1 1 4 1 7 4 5 2 3 1 5 3 1 1 0 1 1 0 0 .50858 +10 10 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 5 3 5 3 3 3 3 4 4 0 0 1 0 3 4 3 3 3 3 3 3 3 3 5 1 1 1 5 5 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 7 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 20 4 5 1 1 1 1 1 10 1 1 16 1 1 3 4 4 2 1 0 0 0 1 0 0 2.66114 +6 -1 2 6 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 2 2 2 3 5 4 5 2 3 4 4 4 3 1 0 0 0 3 3 4 4 2 4 4 2 3 5 4 1 1 1 3 4 1 1 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 2 2 2 1 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 63 2 3 1 7 3 1 1 6 1 1 10 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.29166 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 4 3 5 5 3 5 3 3 2 2 1 0 0 0 2 1 2 4 1 4 2 3 1 4 5 1 1 1 3 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 1 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 1 0 0 0 1 0 0 0 0 1 1 0 0 1 0 0 2 4 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 2 2 32 4 6 7 1 2 1 1 2 1 7 3 4 2 3 3 3 2 1 0 0 1 1 0 0 2.46287 +9 -1 10 10 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 4 4 4 4 2 2 5 5 2 4 4 2 2 1 0 0 0 4 4 5 5 1 5 2 5 2 5 5 1 1 1 5 3 1 1 1 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 3 3 3 5 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 27 4 6 7 6 2 1 1 -1 1 7 4 5 2 3 1 5 3 1 1 0 1 0 0 0 .51941 +10 2 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 3 4 5 2 1 2 4 4 4 4 1 0 0 0 4 4 4 5 1 4 2 2 2 5 4 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 1 1 0 0 1 0 0 0 1 1 1 4 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 59 4 6 7 6 1 1 1 2 1 7 3 2 1 4 2 2 -1 2 0 0 0 0 1 0 .46174 +2 -1 5 6 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 3 4 4 4 3 3 3 2 3 4 4 3 3 1 0 0 0 4 4 2 5 5 4 3 3 2 4 3 1 2 1 3 3 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 66 4 6 8 6 7 1 1 2 1 8 4 1 1 4 6 1 -1 2 0 0 0 0 1 0 .44186 +2 -1 1 6 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 1 0 1 1 1 0 1 1 0 1 0 0 2 2 2 4 2 3 3 2 2 3 3 3 1 1 0 0 0 3 2 3 5 1 4 3 4 5 5 4 1 1 1 4 3 1 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 2 2 2 2 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 -1 9 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 64 2 3 8 6 3 2 18 2 1 8 4 5 2 4 4 1 -1 2 0 0 0 0 1 0 .17962 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 3 2 2 2 4 3 3 3 3 1 0 0 0 3 2 2 4 1 5 4 2 4 4 4 4 4 4 4 4 4 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 3 3 4 3 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 51 2 3 1 5 3 1 1 -1 1 1 16 1 1 4 2 3 11 2 0 0 0 0 1 0 1.24617 +2 -1 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 2 2 2 3 2 4 2 2 3 3 2 2 1 0 0 0 2 2 2 3 2 3 4 2 2 4 3 2 4 2 2 2 4 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 3 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 7 6 73 1 2 8 10 5 1 1 2 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .60713 +9 -1 8 4 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 3 3 3 3 3 6 4 2 3 3 3 2 2 0 1 0 0 3 2 4 4 1 4 3 2 2 3 4 2 2 1 2 2 2 1 0 0 1 1 0 0 0 0 0 0 1 0 0 1 1 0 0 2 2 3 2 1 1 0 1 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 1 0 1 0 0 0 2 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 1 0 1 0 0 0 0 0 1 1 1 19 2 3 5 10 3 1 1 -1 1 5 17 4 2 1 4 5 11 2 0 0 0 0 1 0 .48022 +10 2 2 4 1 0 1 0 1 1 0 1 0 1 0 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 2 2 3 2 2 2 2 2 2 3 2 2 1 0 0 0 3 3 2 4 2 3 4 2 2 4 3 2 2 2 2 2 2 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 2 2 2 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 1 0 0 1 0 1 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 42 2 3 4 10 5 1 1 2 1 4 17 2 1 4 4 2 11 2 0 0 0 0 1 0 .88457 +9 -1 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 2 4 3 3 2 3 2 2 4 4 4 4 0 0 1 0 4 2 3 3 2 4 3 2 2 3 3 2 2 2 2 3 4 0 1 1 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 4 4 5 4 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 1 0 1 0 0 0 2 3 2 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 1 1 19 2 3 5 10 3 1 4 -1 1 5 17 4 2 1 4 4 11 2 0 0 0 0 1 0 .48022 +2 -1 6 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 4 2 4 2 2 2 4 4 4 4 1 0 0 0 3 3 2 4 2 3 4 2 2 3 4 2 2 1 4 2 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 3 3 3 3 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 2 3 3 36 2 3 2 5 4 2 10 2 1 2 16 1 1 3 5 4 3 1 0 0 1 1 0 0 .44274 +2 -1 1 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 3 3 3 4 6 3 1 2 4 4 4 4 1 0 0 0 1 4 2 4 1 4 3 2 6 5 5 1 1 1 5 5 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 3 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 7 84 3 4 8 5 7 1 1 2 1 8 16 3 2 4 6 1 -1 2 0 0 0 0 1 0 1.52705 +1 -1 1 10 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 3 3 3 2 3 3 4 2 2 3 3 2 3 1 0 0 0 2 2 4 4 2 4 2 3 2 4 4 2 2 2 4 2 2 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 2 4 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 2 7 7 76 2 3 8 10 6 1 1 1 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.36702 +10 9 4 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 2 3 3 3 3 3 2 3 3 3 1 0 0 0 4 3 3 3 3 3 2 3 2 4 3 3 3 3 3 3 3 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 2 2 3 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 3 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 38 4 5 11 10 5 2 14 9 2 1 17 5 2 3 1 4 2 1 1 0 0 0 0 0 .47276 +10 10 10 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 3 3 3 3 3 3 3 3 3 3 1 0 0 0 3 4 2 4 3 4 2 4 2 4 3 3 3 3 3 3 3 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 2 3 3 4 1 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 7 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 36 4 5 11 10 6 1 1 10 2 8 17 5 2 3 1 4 2 1 0 0 0 1 0 0 1.08081 +10 10 7 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 4 3 3 3 4 4 4 3 3 1 0 0 0 4 4 3 3 3 3 3 3 3 4 4 2 2 2 3 2 2 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 2 2 3 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 3 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 22 4 6 7 10 6 1 1 10 1 7 17 4 2 1 4 1 -1 2 0 0 0 0 1 0 .76071 +1 -1 1 3 0 1 0 0 1 1 0 0 0 0 0 0 1 0 0 1 0 0 1 1 0 0 0 0 0 1 0 1 0 0 1 2 2 2 4 3 2 1 2 3 3 3 4 1 0 0 0 2 1 2 3 2 2 5 2 2 4 3 2 3 2 2 2 3 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 60 2 3 8 3 3 1 1 1 1 8 5 2 1 4 4 1 -1 2 0 0 0 0 1 0 .68172 +2 -1 1 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 2 2 3 3 3 3 3 4 4 4 4 1 0 0 0 2 2 2 3 3 3 3 3 2 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 3 3 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 60 3 4 10 5 7 1 2 2 1 10 16 4 2 4 6 1 -1 2 0 0 0 0 1 0 .6286 +10 10 11 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 3 3 2 4 1 2 3 3 3 3 1 0 0 0 2 2 2 4 3 2 4 2 2 3 2 1 2 2 3 3 3 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 3 2 3 4 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 7 80 3 4 8 5 7 1 2 10 1 8 16 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.57753 +2 -1 1 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 4 4 4 1 1 2 1 1 3 3 2 2 1 0 0 0 2 4 1 1 1 2 2 3 4 2 1 1 1 1 2 2 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 4 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 6 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 6 5 64 3 4 8 3 7 2 9 2 1 8 6 2 1 4 4 1 -1 2 0 0 0 0 1 0 .36286 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 2 2 3 3 6 6 2 2 4 4 2 2 1 0 0 0 4 4 6 6 6 6 6 6 6 6 4 1 2 1 5 3 1 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 4 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 7 6 72 3 4 8 9 7 1 1 2 2 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .7932 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 3 3 3 2 4 6 4 5 2 4 4 4 4 1 0 0 0 4 2 2 4 2 4 4 2 2 3 3 1 2 2 5 2 5 1 1 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 4 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 85 4 5 8 9 7 1 1 2 1 8 8 3 2 4 6 1 -1 2 0 0 0 0 1 0 .48396 +2 -1 6 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 4 4 4 3 4 6 5 3 4 2 4 3 3 1 0 0 0 3 4 6 6 6 6 6 6 6 6 5 1 2 2 5 2 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 2 2 3 1 0 0 1 0 0 0 1 1 1 1 0 0 1 0 0 1 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 59 3 4 4 9 1 1 1 2 1 4 1 2 1 4 2 2 -1 2 0 0 0 0 1 0 .84456 +10 10 4 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 3 3 2 3 3 3 3 3 3 3 3 3 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 2 2 3 1 2 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 2 3 2 2 1 1 0 1 0 0 0 1 1 0 1 0 1 1 0 0 0 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 2 3 3 39 3 4 1 3 7 2 11 10 2 1 10 1 1 3 1 4 1 1 0 0 1 0 0 0 1.1686 +10 10 1 5 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 4 4 3 3 3 3 3 3 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 5 5 3 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 33 4 6 11 3 3 2 13 10 2 9 17 4 2 3 3 3 2 1 1 0 1 0 0 0 .43567 +10 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 3 5 5 5 1 3 4 4 2 2 1 0 0 0 4 2 5 5 1 5 1 2 2 5 5 1 1 1 1 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 1 1 1 1 0 1 0 1 0 0 1 0 1 1 1 1 0 0 0 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 1 1 22 1 2 1 3 4 2 10 2 2 1 11 1 1 1 4 4 11 2 0 0 0 0 1 0 .77394 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 2 2 2 4 2 4 2 3 2 2 3 3 1 0 0 0 2 2 2 3 2 3 3 2 3 3 3 2 3 2 3 2 4 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 2 2 1 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 7 6 71 3 4 8 2 2 1 1 1 1 8 12 2 1 4 2 2 -1 2 0 0 0 0 1 0 .64184 +10 10 1 10 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 4 3 3 3 3 4 4 4 4 1 0 0 0 2 3 3 3 3 3 3 3 3 3 3 2 2 1 2 2 2 0 0 1 1 0 1 0 0 0 0 0 1 0 0 1 0 0 0 2 3 2 3 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 5 5 56 4 5 2 6 1 1 1 10 1 2 4 1 1 4 2 2 -1 2 0 0 0 0 1 0 .54922 +11 11 1 3 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 3 4 5 3 3 3 5 4 4 4 4 1 0 0 0 3 2 3 3 3 3 3 3 3 3 5 5 5 5 4 2 1 1 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 3 3 3 3 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 7 7 75 2 3 8 6 6 1 1 11 1 8 4 3 2 4 6 1 -1 2 0 0 0 0 1 0 .58268 +4 -1 3 6 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 1 0 0 1 2 3 3 1 2 4 4 3 3 4 4 4 0 0 1 0 3 1 2 5 1 2 2 4 2 5 2 2 1 2 2 1 2 1 0 0 1 0 1 0 0 0 0 0 1 1 1 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 -1 8 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 60 4 6 7 6 2 1 1 4 1 7 3 3 2 4 4 1 -1 2 0 0 0 0 1 0 .44696 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 4 3 4 5 3 5 4 3 3 2 3 1 0 0 0 3 1 3 4 2 2 4 4 2 2 2 3 3 5 3 4 2 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 5 4 2 5 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 -1 0 0 0 0 0 1 1 1 1 7 6 65 3 4 2 6 6 1 1 2 1 2 16 2 1 4 4 1 -1 2 0 0 0 0 1 0 .32522 +1 -1 1 5 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 2 3 2 2 4 2 3 3 4 4 1 0 0 0 3 4 3 3 3 3 3 3 3 3 2 1 2 2 1 1 3 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 1 1 0 1 1 2 7 6 74 1 2 8 2 4 1 1 1 1 8 17 1 1 4 6 1 -1 2 0 0 0 0 1 0 .94905 +2 -1 1 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 3 3 3 3 2 2 2 3 3 3 4 2 3 1 0 0 0 3 3 2 5 1 5 1 2 1 5 5 1 1 1 4 4 1 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 5 4 4 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 8 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 59 1 2 1 6 6 1 1 2 1 1 16 2 1 4 6 1 -1 2 0 0 0 0 1 0 .74993 +4 -1 6 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 0 0 0 1 0 0 0 0 4 4 4 3 1 3 3 1 3 2 4 3 3 1 0 0 0 4 4 3 5 3 3 1 3 3 3 3 1 3 3 3 2 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 8 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 4 4 50 3 4 2 6 1 1 1 4 1 2 16 2 1 3 5 2 1 1 0 0 0 1 0 0 .38844 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 2 2 2 3 1 4 1 1 3 2 2 2 1 0 0 0 3 1 2 2 3 2 4 2 2 4 3 1 1 2 2 2 3 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 1 1 1 1 1 1 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 1 1 1 0 0 0 0 0 2 3 3 43 1 1 2 2 5 1 1 2 2 1 15 1 1 3 1 4 2 1 0 0 0 1 0 0 1.58777 +6 -1 1 10 0 0 1 1 1 0 0 0 0 1 0 0 0 0 0 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 2 1 1 2 4 2 2 1 1 4 4 2 3 0 0 1 0 1 2 3 4 1 2 5 1 1 4 3 1 2 1 3 2 1 0 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 1 1 1 2 1 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 1 0 1 1 0 1 0 1 0 2 7 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 48 3 4 1 8 3 1 1 6 1 1 8 4 2 3 1 3 1 1 0 0 0 1 0 0 1.4935 +1 -1 3 6 1 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 1 0 0 2 2 2 3 4 2 3 1 3 3 3 3 3 1 0 0 0 4 2 2 3 1 3 3 2 2 4 4 1 2 2 3 3 2 1 0 0 1 0 1 0 0 0 1 1 0 0 0 0 0 0 0 2 2 2 3 1 0 0 1 0 1 0 1 1 1 1 1 0 0 1 0 1 0 0 0 0 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 56 1 2 4 2 4 1 1 1 1 4 16 1 1 4 6 2 11 2 0 0 0 0 1 0 .85344 +10 10 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 4 5 5 5 5 4 4 4 4 1 0 0 0 4 4 6 6 6 6 6 6 6 6 2 1 2 3 4 2 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 2 3 3 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 4 4 48 2 3 1 3 1 2 13 10 1 1 11 4 2 3 1 4 2 1 0 0 0 1 0 0 .55404 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 4 3 4 3 5 3 3 4 3 3 0 0 1 0 4 4 2 4 2 5 3 4 3 2 2 2 2 2 4 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 3 3 3 3 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 26 4 6 11 3 1 2 10 -1 1 11 7 4 2 3 3 3 2 1 1 0 0 0 0 0 .43567 +9 -1 11 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 1 6 6 6 6 6 3 5 3 3 0 0 1 0 4 4 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 6 6 6 6 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 40 3 4 2 3 7 2 17 -1 1 2 17 4 2 3 5 4 3 1 1 0 0 1 0 0 .55215 +10 2 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 3 4 4 2 6 6 6 2 4 4 4 4 1 0 0 0 3 3 2 4 2 4 2 4 2 2 4 3 2 2 2 2 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 7 6 65 3 4 8 5 7 1 1 2 2 1 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.04417 +2 -1 2 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 2 2 2 2 3 2 3 3 3 3 3 2 2 1 0 0 0 4 2 3 3 2 3 3 3 3 5 3 2 2 1 3 3 2 1 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 3 3 3 3 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 3 3 36 1 2 4 5 5 2 14 2 1 4 12 1 1 3 1 3 1 1 0 0 1 0 0 0 .47198 +10 10 1 9 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 0 0 0 1 1 0 0 0 2 3 3 4 3 3 4 3 3 4 4 2 2 1 0 0 0 4 4 6 6 6 6 6 6 6 6 4 1 1 3 3 2 1 0 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 3 3 3 3 0 0 0 1 0 0 0 1 0 1 0 1 1 0 0 0 0 1 0 1 0 0 0 0 0 -1 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 29 4 6 11 5 2 1 1 10 1 11 5 4 2 3 3 5 4 1 1 1 1 1 0 0 .91719 +1 -1 1 1 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 1 1 0 0 0 2 2 2 2 4 4 4 1 2 3 3 3 3 1 0 0 0 2 2 4 3 1 2 2 4 2 4 1 1 1 1 2 4 2 0 1 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 1 4 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 58 1 2 8 9 6 1 1 1 1 8 13 2 1 4 2 2 -1 2 0 0 0 0 1 0 .56117 +2 -1 1 10 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 3 3 3 3 3 2 5 1 1 4 4 3 4 0 1 0 0 2 2 2 4 1 3 2 4 1 5 2 1 2 2 2 2 2 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 1 2 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 1 0 1 1 0 1 1 0 0 2 9 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 5 5 57 3 4 4 9 6 1 1 2 1 4 4 4 2 4 6 1 -1 2 0 0 0 0 1 0 .66511 +2 -1 1 9 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 2 2 2 3 2 4 2 1 4 3 3 3 3 1 0 0 0 3 1 2 2 1 4 4 2 5 2 2 2 4 2 4 2 2 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 67 4 6 8 9 6 1 1 2 1 8 5 2 1 4 2 2 -1 2 0 0 0 0 1 0 .55616 +2 -1 2 2 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 0 3 3 3 3 4 6 4 2 2 2 3 2 3 1 0 0 0 2 2 2 2 2 5 4 2 4 2 2 1 2 2 2 2 2 0 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 1 1 6 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 2 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 59 2 3 1 9 3 1 1 2 1 1 11 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.06943 +2 -1 5 6 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 4 4 4 4 5 5 5 4 5 4 4 4 2 0 0 1 0 4 4 4 5 4 5 5 5 4 5 5 5 5 5 5 5 5 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 3 3 3 4 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 39 1 2 1 1 4 2 10 2 1 1 15 4 2 3 1 5 3 1 1 1 1 0 0 0 1.65429 +3 -1 1 4 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 2 2 3 3 2 1 1 2 3 2 2 1 0 0 0 2 1 2 4 1 2 4 1 4 2 3 2 1 2 2 1 3 0 0 0 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 1 2 1 1 1 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 0 0 1 0 1 1 0 0 1 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 2 2 28 3 4 1 3 3 1 1 3 1 1 17 1 1 1 4 3 11 2 0 0 0 0 1 0 2.87802 +2 -1 2 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 3 3 3 4 4 4 2 3 2 2 1 0 0 0 3 1 1 3 3 2 3 2 4 2 3 3 2 4 3 3 3 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 3 3 3 3 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 1 1 20 2 3 1 3 4 1 4 2 2 1 17 2 1 1 4 3 11 2 0 0 0 0 1 0 2.1307 +6 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 2 2 3 2 4 3 3 2 2 3 4 3 4 1 0 0 0 3 2 4 4 1 4 2 5 1 4 3 4 4 2 3 2 2 0 0 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 1 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 7 7 76 2 3 8 7 7 1 1 6 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .91959 +1 -1 1 7 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 3 3 2 5 2 2 1 2 3 3 2 2 1 0 0 0 2 2 2 2 2 1 5 2 2 1 1 1 1 1 1 1 1 1 0 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 1 1 1 1 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 4 4 52 2 3 1 11 6 2 14 1 1 1 9 1 1 4 2 4 11 2 0 0 0 0 1 0 .50454 +11 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 1 1 4 5 2 5 2 1 3 4 1 1 1 0 0 0 3 2 5 4 1 5 2 3 1 3 2 1 5 1 2 3 1 1 1 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 5 3 1 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 1 0 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 28 3 4 1 11 4 1 1 10 1 1 10 1 1 1 4 1 -1 2 0 0 0 0 1 0 2.45309 +10 10 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 0 0 1 0 0 1 0 1 0 0 2 2 2 3 5 4 4 1 4 4 4 2 2 1 0 0 0 3 2 6 3 1 4 2 1 2 5 4 1 1 1 5 3 2 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 1 1 1 1 1 0 1 1 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 9 3 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 6 5 60 2 3 1 11 6 1 1 10 1 1 12 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.00535 +2 -1 1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 4 3 3 3 2 5 4 5 3 4 4 1 2 1 0 0 0 2 4 5 5 1 5 1 5 1 5 5 1 1 1 5 5 1 0 1 1 0 0 1 0 0 0 0 1 1 0 0 1 0 0 0 1 5 5 1 1 0 0 0 0 0 0 0 0 1 0 1 1 0 1 1 0 0 0 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 4 4 48 3 4 1 7 2 1 1 2 1 1 9 3 2 4 2 3 11 2 0 0 0 0 1 0 2.03656 +6 -1 1 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 2 2 2 2 3 4 2 1 2 3 3 3 3 1 0 0 0 3 2 2 4 2 4 3 2 3 4 5 1 4 1 4 4 2 1 1 0 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 2 2 2 4 1 0 0 1 1 0 0 1 1 1 1 0 1 0 1 0 0 0 1 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 6 5 62 2 3 8 7 6 1 1 6 1 8 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 .94119 +10 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 3 2 2 2 3 2 2 3 2 3 3 1 0 0 0 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 4 4 4 1 1 0 0 0 0 0 0 1 1 1 1 1 1 0 1 1 0 0 0 1 0 1 0 0 0 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 22 4 5 2 8 3 1 1 1 1 2 17 4 2 1 4 4 11 2 0 0 0 0 1 0 1.16131 +2 -1 9 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 3 3 3 4 3 3 3 4 4 1 0 0 0 4 4 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 5 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 54 4 5 7 11 1 1 1 2 1 7 17 4 2 4 4 1 -1 2 0 0 0 0 1 0 .94829 +2 -1 10 7 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 2 2 4 5 5 5 5 5 3 4 1 1 1 0 0 0 1 1 5 5 1 3 4 3 3 3 5 1 1 4 5 5 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 4 2 3 5 1 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 49 3 4 10 11 2 1 1 2 1 10 17 4 2 4 4 1 -1 2 0 0 0 0 1 0 .7788 +10 3 6 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 1 0 1 1 1 1 0 0 0 1 0 0 0 0 1 1 2 4 2 4 4 1 3 3 4 2 2 1 0 0 0 2 1 1 4 1 2 2 2 3 3 4 2 2 2 3 2 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 2 3 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 1 0 1 0 0 0 0 0 1 2 2 28 4 5 1 11 2 1 1 3 1 1 17 4 2 3 1 3 1 1 1 0 0 0 0 0 1.95375 +11 11 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 1 3 1 2 4 4 4 4 1 0 0 0 2 2 1 3 1 5 5 2 4 5 5 2 1 1 1 5 1 1 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 6 5 63 2 3 8 11 2 1 1 11 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .58106 +2 -1 5 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 1 3 2 3 3 4 2 4 4 4 4 1 0 0 0 3 4 3 4 3 2 4 4 3 2 4 5 2 4 2 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 4 3 2 4 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 24 4 6 5 10 4 2 10 2 2 9 17 2 1 1 4 4 11 2 0 0 0 0 1 0 .3247 +2 -1 5 8 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 4 2 3 3 2 2 4 2 3 4 1 0 0 1 0 2 4 4 3 4 2 2 3 3 2 5 2 2 3 3 4 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 2 3 2 4 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 29 4 5 1 10 6 2 10 2 1 1 17 2 1 3 1 5 3 1 0 0 0 1 0 0 .85498 +2 -1 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 2 1 4 3 3 4 2 2 4 1 3 1 0 0 0 3 4 2 2 3 4 4 4 4 3 4 3 4 4 3 3 2 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 2 2 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 38 3 4 1 10 7 2 10 2 1 1 17 2 1 3 1 4 2 1 1 1 0 0 0 0 .58537 +10 2 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 2 2 2 2 2 2 2 2 2 2 1 0 0 0 3 4 2 2 2 3 3 2 2 2 2 2 1 2 2 2 3 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 2 2 1 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 6 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 2 2 30 1 1 1 3 4 2 11 2 1 1 9 1 1 1 4 2 11 2 0 0 0 0 1 0 .89324 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 3 2 2 3 2 2 2 2 2 2 2 2 0 1 0 0 1 1 2 2 2 2 4 2 2 2 2 2 2 2 2 4 4 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 31 4 5 7 3 3 2 15 2 1 7 2 4 2 3 3 3 2 1 0 1 1 0 0 0 .62923 +2 -1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 2 2 2 1 2 1 1 1 1 2 2 1 0 0 0 1 1 2 2 1 2 5 2 1 2 2 1 2 1 2 1 1 1 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 72 4 6 8 3 3 2 15 2 1 8 8 1 1 4 2 2 -1 2 0 0 0 0 1 0 .30321 +2 -1 4 5 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 2 3 3 2 2 4 3 2 4 3 2 0 0 1 0 3 4 4 2 2 3 3 4 4 4 4 3 4 4 4 3 2 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 2 4 4 3 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 45 3 4 1 10 6 2 10 2 1 1 17 4 2 3 1 5 7 1 1 0 1 1 0 0 .65466 +2 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 3 3 3 2 1 1 1 3 1 1 1 1 1 0 0 0 1 4 6 2 6 6 6 6 6 6 6 6 3 1 1 6 3 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 2 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 7 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 38 4 5 11 3 7 2 11 2 2 2 16 3 2 3 1 5 1 1 0 0 0 1 0 0 .57274 +10 3 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 4 1 1 2 1 1 2 2 2 2 1 0 0 0 2 3 2 2 2 4 4 4 2 4 2 2 2 2 2 2 3 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 2 2 1 1 1 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 35 2 3 11 3 4 1 4 3 2 1 11 4 2 3 1 3 1 1 0 0 1 0 0 0 1.03734 +2 -1 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 2 3 3 2 2 1 2 2 3 2 2 1 0 0 0 2 1 1 1 1 1 4 2 3 1 3 3 3 1 4 1 3 0 1 0 0 0 1 0 0 0 0 0 0 1 1 0 1 0 0 2 2 2 1 1 0 1 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 1 0 0 0 0 0 1 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 27 4 6 9 3 2 2 14 2 1 9 16 3 2 3 3 2 1 1 1 0 0 0 0 0 .43567 +2 -1 6 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 3 3 3 4 4 4 4 4 3 3 3 3 1 0 0 0 3 1 3 2 1 3 4 2 4 4 3 1 1 1 5 5 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 3 3 2 2 1 0 1 1 0 0 0 1 1 1 1 1 1 0 0 0 1 0 1 1 0 0 0 0 0 1 6 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 2 2 34 3 4 1 3 4 2 14 2 1 1 11 1 1 3 1 3 1 1 1 0 0 0 0 0 1.02419 +2 -1 4 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 2 2 4 4 2 3 3 4 3 2 3 0 0 1 0 4 4 3 4 2 2 2 4 2 4 3 2 3 4 3 2 3 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 4 2 3 3 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 34 1 2 1 10 5 2 10 2 1 1 17 2 1 2 2 2 -1 2 0 0 0 0 1 0 .79706 +1 -1 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 2 3 3 3 3 3 2 3 2 2 1 0 0 0 3 3 4 3 3 4 3 3 3 3 3 3 1 2 1 1 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 2 1 2 1 0 1 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 2 3 3 40 4 6 9 3 2 2 15 1 1 9 16 3 2 4 4 4 11 2 0 0 0 0 1 0 .49061 +10 10 1 3 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 3 3 3 2 4 5 4 4 3 3 4 2 2 1 0 0 0 3 4 3 5 3 4 3 3 3 4 4 4 2 2 2 4 2 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 1 3 2 1 0 0 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 0 1 0 1 0 2 9 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 2 2 26 3 4 1 5 5 1 1 10 1 1 17 4 2 2 2 2 -1 2 0 0 0 0 1 0 1.90605 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 3 3 4 5 3 3 3 3 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 3 3 3 3 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 2 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 31 3 4 11 5 3 1 1 -1 2 12 17 7 -1 2 1 4 11 2 0 0 0 0 1 0 1.09373 +2 -1 3 9 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 2 2 2 3 2 2 4 1 3 3 4 1 1 1 0 0 0 2 1 1 4 2 2 2 1 5 2 4 2 2 2 2 2 2 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 1 1 1 1 1 1 1 1 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 -1 -1 0 0 0 0 0 1 1 1 1 1 1 21 2 3 5 5 3 1 1 2 2 1 13 2 1 1 4 4 11 2 0 0 0 0 1 0 .86567 +2 -1 1 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 1 0 0 0 0 1 0 0 0 0 2 2 2 3 2 2 3 2 3 3 3 2 2 1 0 0 0 3 2 2 2 2 4 2 2 2 3 2 1 2 1 2 2 2 1 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 2 1 1 2 1 1 0 1 1 1 0 1 1 1 1 1 1 0 1 0 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 28 2 3 1 5 4 1 1 2 1 1 12 1 1 3 1 3 1 1 1 0 0 0 0 0 1.6597 +2 -1 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 2 4 5 6 6 6 6 6 5 5 5 5 0 0 0 1 5 4 6 3 6 6 6 2 6 6 4 4 4 2 3 2 3 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 2 3 4 2 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 33 1 2 11 10 5 2 10 2 2 1 17 2 1 3 1 5 3 1 1 1 0 0 0 0 .40431 +10 10 9 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 4 5 3 6 6 3 3 4 4 4 4 1 0 0 0 4 4 4 4 6 5 2 3 6 4 3 6 3 6 6 3 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 6 4 3 3 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 19 3 4 2 5 1 1 1 10 2 1 16 3 2 1 4 3 11 2 0 0 0 0 1 0 1.53845 +1 -1 1 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 0 1 1 0 1 1 0 0 1 0 1 0 0 2 2 2 2 2 2 2 2 2 2 3 3 2 1 0 0 0 2 1 2 3 1 3 2 3 2 4 3 2 2 2 2 2 2 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 3 3 1 1 1 0 0 1 1 0 1 1 1 1 0 1 1 1 0 0 0 1 0 1 1 0 1 0 2 9 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 1 1 0 1 1 1 5 5 59 1 2 4 5 1 1 1 1 1 4 1 1 1 4 2 2 -1 2 0 0 0 0 1 0 .7577 +1 -1 1 9 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 2 2 2 2 2 3 3 1 3 3 3 2 3 1 0 0 0 3 2 4 5 1 5 4 2 1 5 2 2 2 1 2 1 1 0 1 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 2 2 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 6 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 64 3 4 8 5 7 1 1 1 1 8 17 4 2 4 6 2 11 2 0 0 0 0 1 0 1.32281 +9 -1 1 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 5 2 4 5 5 4 4 4 4 4 1 0 0 0 3 3 3 2 3 2 3 2 3 5 2 4 2 3 3 4 4 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 2 2 4 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 6 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 1 1 18 2 3 5 3 1 2 14 -1 2 12 16 3 2 1 4 3 11 2 0 0 0 0 1 0 .41532 +1 -1 1 10 0 0 0 0 1 1 1 0 0 0 1 0 0 0 0 1 1 0 1 1 1 1 1 0 0 1 1 1 0 0 2 2 2 2 4 2 4 2 4 2 3 2 2 1 0 0 0 2 1 2 4 1 1 4 1 1 5 5 1 1 1 4 1 2 1 0 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 2 2 2 4 1 1 0 1 1 1 0 1 1 1 1 0 1 1 1 0 0 0 0 0 0 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 43 1 2 1 5 5 1 1 1 1 1 13 1 1 3 1 4 2 1 0 0 0 1 0 0 1.82016 +2 -1 1 2 1 0 0 0 1 1 0 0 0 0 1 0 1 0 0 1 1 1 1 1 1 1 1 0 1 1 0 1 0 0 1 2 1 3 4 4 4 2 2 3 3 2 2 1 1 0 0 2 1 4 3 1 3 3 5 1 4 2 2 2 3 2 2 3 1 0 1 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 3 3 2 2 1 1 0 1 1 0 0 1 1 1 1 0 0 0 1 0 0 0 1 1 1 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 62 1 1 4 5 5 1 1 2 1 4 13 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.07465 +1 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 2 2 1 3 1 3 3 4 4 4 1 0 0 0 3 4 3 3 3 3 3 3 3 3 5 1 2 3 5 2 4 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 5 1 3 1 0 1 0 0 0 0 1 1 1 1 1 1 0 1 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 44 3 4 1 6 1 1 1 1 1 1 17 1 1 3 4 3 2 1 0 1 0 1 0 0 .71102 +10 2 8 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 3 3 3 2 2 4 2 2 2 4 4 3 3 0 0 1 0 3 4 2 4 1 4 3 2 3 3 2 1 1 4 2 1 2 1 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 5 2 5 1 1 1 1 0 1 0 1 1 1 1 0 1 1 1 1 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 21 4 5 2 9 3 1 1 2 2 2 16 5 2 1 4 3 11 2 0 0 0 0 1 0 .49165 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 3 1 2 2 1 4 2 2 3 3 1 0 0 0 1 2 1 1 1 1 5 1 2 3 5 1 1 1 2 1 5 1 0 0 1 1 0 0 0 0 1 0 0 1 1 0 0 0 0 1 1 3 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 7 7 89 4 5 8 9 7 1 1 2 2 12 16 2 1 4 6 2 11 2 0 0 0 0 1 0 1.01131 +10 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 1 0 0 0 0 1 0 0 0 0 2 2 2 3 3 3 4 2 2 3 3 3 3 1 0 0 0 3 2 2 3 2 3 4 2 4 2 3 2 2 2 2 2 4 1 0 1 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 2 2 2 1 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 1 0 1 0 0 0 0 0 2 4 4 50 2 3 1 9 4 1 1 10 2 1 17 2 1 4 2 4 11 2 0 0 0 0 1 0 .99837 +2 -1 1 5 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 3 2 2 3 4 2 2 2 3 3 3 1 0 0 0 1 1 2 4 2 2 4 3 2 4 4 2 2 2 4 2 2 1 0 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 2 2 2 2 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 43 2 3 2 11 1 2 10 2 1 2 8 1 1 3 1 5 1 1 0 0 0 1 0 0 .37125 +2 -1 2 6 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 3 2 2 1 0 0 0 2 3 2 2 2 3 4 2 4 4 4 2 2 2 3 2 4 0 1 0 0 0 1 1 0 0 1 0 1 0 0 0 0 0 0 2 1 1 2 0 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 8 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 21 2 3 1 11 3 2 10 2 1 1 8 1 1 1 4 4 11 2 0 0 0 0 1 0 .81479 +2 -1 1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 2 3 3 2 4 4 4 2 4 3 3 3 3 1 0 0 0 1 2 2 5 1 5 2 4 1 5 4 1 1 1 2 1 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 3 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 4 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 7 6 71 3 4 8 11 7 1 1 2 2 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.18795 +7 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 3 4 3 2 3 4 3 2 4 4 1 1 0 0 1 0 4 4 3 3 3 3 3 3 3 3 2 1 1 1 4 2 1 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 4 3 4 1 0 0 0 0 0 0 1 1 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 3 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 24 4 6 11 11 4 1 1 7 1 11 4 4 2 3 3 2 1 1 1 0 0 0 0 0 1.02939 +2 -1 1 1 1 0 1 1 1 1 1 0 0 0 1 1 0 0 0 1 1 1 1 1 1 1 0 0 1 1 1 0 0 0 1 2 2 4 4 4 4 1 2 3 4 4 3 1 0 0 0 2 2 2 2 4 2 5 2 5 1 3 2 2 1 4 4 5 1 0 1 0 1 0 0 0 0 1 1 0 0 1 0 0 0 0 4 2 2 5 1 1 0 1 0 0 0 1 1 0 0 0 1 0 1 0 0 0 1 1 0 0 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 24 2 3 5 9 3 1 4 2 1 5 1 4 2 1 4 5 11 2 0 0 0 0 1 0 .54037 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 1 1 0 0 2 2 2 3 2 2 4 2 2 3 3 3 2 0 1 0 0 3 3 2 4 3 4 3 2 2 2 3 4 3 4 2 3 4 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 2 2 2 4 1 1 0 1 0 0 0 1 1 1 1 0 1 1 1 1 0 0 0 1 0 1 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 1 0 1 0 0 0 0 0 2 1 1 20 2 3 5 9 3 1 1 2 1 5 1 4 2 1 4 5 11 2 0 0 0 0 1 0 .63568 +10 3 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 2 2 2 3 2 3 1 2 3 3 2 3 1 0 0 0 2 1 2 2 2 2 5 2 2 3 3 1 2 2 2 2 3 1 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 2 2 3 1 1 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 1 7 6 70 1 2 8 9 2 1 1 3 1 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 .4186 +10 10 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 3 3 5 2 3 3 3 3 2 3 3 3 0 1 0 0 4 4 1 3 3 6 3 3 3 3 2 3 1 2 2 3 4 0 1 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 3 3 3 2 1 1 1 1 0 0 0 1 1 1 1 0 1 0 1 0 1 0 0 1 0 0 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 20 2 3 5 9 3 1 1 10 1 5 1 4 2 1 4 5 11 2 0 0 0 0 1 0 .78135 +3 -1 3 3 0 1 0 1 0 1 0 0 0 0 0 0 1 0 0 1 1 1 1 1 1 1 1 0 0 1 1 1 0 0 2 2 2 3 2 2 3 1 2 3 3 2 2 1 0 0 0 2 2 3 4 1 3 3 4 1 3 4 3 4 2 2 2 2 0 1 1 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 2 2 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 79 1 2 2 9 6 1 1 3 1 2 9 2 1 4 6 1 -1 2 0 0 0 0 1 0 .54829 +3 -1 1 1 1 1 1 0 1 1 1 0 0 1 0 1 0 0 0 1 1 1 1 1 1 1 0 0 1 1 1 1 0 0 2 2 3 3 2 2 2 2 1 3 2 2 2 1 0 0 0 4 2 2 3 1 4 4 3 2 3 3 3 4 3 2 2 2 1 0 1 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 2 1 2 1 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 45 1 2 1 9 5 2 7 3 2 1 12 1 1 3 1 5 1 1 0 0 0 1 0 0 .48726 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 3 4 4 2 3 4 1 2 1 4 4 2 2 0 0 1 0 4 3 1 1 3 2 1 1 2 3 6 1 1 2 1 1 2 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 6 6 6 5 1 1 0 1 0 0 0 1 1 1 1 0 0 0 1 1 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 39 2 3 1 9 4 2 13 -1 2 1 8 4 2 3 1 4 2 1 0 0 1 1 0 0 .27292 +6 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 2 2 2 3 4 5 3 2 4 3 4 2 2 0 1 0 0 4 1 2 3 2 2 4 2 4 2 2 1 1 1 2 1 5 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 1 3 1 1 1 0 1 0 0 0 1 1 1 1 0 1 1 1 1 0 0 1 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 19 2 3 5 9 3 2 9 6 1 5 1 4 2 1 4 5 11 2 0 0 0 0 1 0 .14483 +1 -1 1 1 0 0 1 1 0 0 1 0 0 0 0 1 1 0 0 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 1 2 2 2 2 3 2 1 1 3 2 1 1 0 1 0 0 1 1 3 3 1 3 4 1 4 3 4 2 3 1 3 2 2 0 1 0 1 0 0 0 0 0 0 1 0 1 0 1 0 0 0 2 2 3 1 1 1 1 0 0 0 0 1 1 1 1 0 0 0 1 0 1 0 0 1 0 0 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 1 0 1 0 0 0 0 0 2 1 1 21 2 3 5 9 3 1 1 1 1 5 1 4 2 1 4 5 11 2 0 0 0 0 1 0 .54037 +2 -1 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 2 2 3 2 4 3 3 3 2 3 3 2 0 1 0 0 3 2 3 5 2 5 3 4 2 5 4 2 3 1 4 2 2 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 3 2 2 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 21 3 4 1 6 3 1 1 2 2 1 10 4 2 2 2 2 -1 2 0 0 0 0 1 0 1.07314 +2 -1 3 9 1 1 0 0 0 1 0 0 0 0 0 1 1 0 0 1 1 1 1 1 1 1 1 0 0 1 1 1 0 0 3 3 2 2 3 3 4 2 2 2 4 1 4 1 0 0 0 3 3 2 4 2 4 2 3 2 3 2 2 2 2 2 2 3 1 1 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 1 1 2 2 1 0 0 1 0 0 0 1 1 1 1 1 0 1 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 2 3 3 44 1 2 10 5 5 1 1 2 2 1 13 1 1 3 1 5 3 1 0 0 1 1 0 0 1.46401 +2 -1 10 10 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 1 0 1 1 1 0 1 1 0 1 0 0 2 3 3 3 4 2 4 2 4 3 3 3 3 1 0 0 0 2 1 2 4 2 2 4 2 4 2 4 2 2 2 4 2 2 0 1 0 0 1 1 0 0 0 0 1 0 0 1 1 0 0 0 2 2 2 2 1 0 1 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 57 3 4 1 5 3 1 1 2 1 1 1 2 1 4 4 2 11 2 0 0 0 0 1 0 2.05294 +3 -1 1 1 0 0 1 0 0 1 1 0 1 0 0 0 0 0 0 1 1 1 1 0 0 1 0 1 0 1 0 0 0 0 1 2 1 3 2 2 2 1 1 3 3 3 2 1 0 0 0 1 1 4 5 1 4 1 4 1 5 2 2 5 2 1 2 4 0 0 0 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 4 5 4 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 1 0 1 0 0 0 0 0 1 7 7 80 4 6 8 5 5 1 1 3 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .95898 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 4 3 2 3 3 3 3 3 3 3 3 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 1 1 1 2 1 1 1 1 0 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 1 2 1 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 44 4 5 1 10 1 1 1 -1 2 1 17 1 1 3 2 5 3 1 0 1 0 1 0 0 1.89311 +10 10 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 5 5 5 5 5 4 4 4 4 1 0 0 0 4 4 1 5 1 5 1 5 1 1 5 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 3 0 0 0 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 25 2 3 1 10 6 1 1 10 1 1 17 1 1 3 1 5 1 1 1 0 0 0 0 0 1.48771 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 3 3 3 2 3 3 3 2 2 3 3 3 3 1 0 0 0 3 4 3 3 2 5 3 3 2 4 2 2 2 2 3 2 2 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 2 2 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 1 0 0 1 1 0 2 8 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 40 2 3 2 4 2 1 1 2 2 1 13 1 1 3 1 4 2 1 0 0 1 0 0 0 1.48532 +11 11 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 2 5 6 4 1 2 3 4 3 3 0 0 1 0 4 2 2 3 2 3 4 2 2 3 2 1 2 2 6 2 2 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 2 2 2 1 1 0 0 0 0 0 0 1 1 1 1 1 0 0 1 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 27 3 4 11 8 4 2 18 11 2 1 16 6 -1 2 2 2 -1 2 0 0 0 0 1 0 .42793 +10 1 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 4 3 4 1 2 4 4 2 2 1 0 0 0 3 4 3 3 3 3 3 3 3 3 4 1 1 4 2 2 2 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 3 2 3 1 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 33 2 3 1 8 2 1 1 1 1 1 13 6 -1 3 1 3 1 1 0 1 0 0 0 0 1.58494 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 2 4 2 2 1 2 3 3 3 3 1 0 0 0 2 4 2 3 2 2 3 2 2 4 4 1 2 4 2 2 2 1 1 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 3 2 1 1 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 40 3 4 1 8 3 1 1 1 1 1 13 6 -1 3 1 3 1 1 0 0 0 1 0 0 1.68362 +10 10 6 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 2 3 4 4 3 5 2 2 3 2 2 1 0 0 0 4 2 2 4 2 2 2 2 2 2 2 1 1 2 2 2 3 1 0 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 2 2 2 2 1 0 0 1 0 0 0 1 1 0 1 0 0 0 1 1 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 2 2 30 2 3 11 8 3 2 18 10 2 1 11 6 -1 3 1 3 1 1 0 1 0 0 0 0 .35167 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 2 5 3 3 1 3 4 4 4 4 0 0 1 0 4 4 3 3 3 3 3 3 3 3 2 2 2 3 4 4 2 0 0 0 0 0 0 0 1 0 1 0 1 0 0 1 0 0 0 3 3 3 2 1 0 1 1 0 0 0 1 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 4 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 24 2 3 11 8 2 2 13 -1 2 1 10 6 -1 3 1 3 1 1 1 0 0 0 0 0 .42642 +2 -1 1 4 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 1 0 0 2 2 2 4 4 5 5 2 2 4 3 2 2 1 0 0 0 2 2 4 5 1 4 1 4 1 5 5 1 2 1 4 2 1 0 0 0 1 0 1 1 0 0 0 0 1 0 1 1 0 0 0 2 2 2 1 1 0 1 1 0 0 0 1 1 1 1 1 1 1 0 1 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 1 0 0 1 0 2 3 3 37 2 3 10 7 5 1 1 2 2 1 12 1 1 2 2 2 -1 2 0 0 0 0 1 0 1.23458 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 4 4 4 2 2 4 4 4 4 1 0 0 0 2 2 3 5 1 3 1 3 1 5 5 2 2 1 3 2 1 0 1 1 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 70 3 4 8 7 6 1 1 1 1 8 16 1 1 4 2 2 -1 2 0 0 0 0 1 0 .87625 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 3 4 5 3 3 3 2 4 4 4 4 0 1 0 0 4 4 3 5 1 4 3 3 3 4 3 3 2 1 5 3 1 1 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 3 3 3 1 0 0 1 0 0 0 1 1 1 1 0 1 1 1 0 0 0 1 1 0 0 1 0 0 2 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 45 3 4 1 2 3 1 1 -1 1 1 11 4 2 4 2 2 -1 2 0 0 0 0 1 0 1.88067 +5 -1 1 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 1 1 1 1 0 1 1 0 0 0 0 0 0 0 2 2 2 3 3 3 4 2 2 3 3 2 2 1 0 0 0 3 2 2 5 1 4 1 2 1 3 5 2 1 1 3 4 1 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 2 2 4 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 57 3 4 4 10 2 1 1 5 1 4 17 3 2 4 4 1 -1 2 0 0 0 0 1 0 .66284 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 4 4 3 5 6 6 3 6 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 4 2 1 2 4 2 2 0 1 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 5 5 3 3 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 63 1 2 8 2 2 1 1 -1 2 8 10 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.21096 +6 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 4 5 4 2 5 4 4 4 3 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 5 1 1 1 3 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 7 75 4 6 8 8 7 1 1 6 2 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.73513 +2 -1 3 4 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 1 0 1 0 0 1 1 0 0 0 1 0 0 0 0 2 2 2 4 3 3 3 3 4 2 2 1 1 1 0 0 0 2 3 2 2 2 1 3 2 2 4 4 1 2 2 2 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 2 2 2 2 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 1 1 0 1 1 1 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 2 2 32 2 3 7 2 3 2 13 2 2 4 12 2 1 3 1 5 1 1 1 0 0 0 0 0 .67973 +9 -1 6 10 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 1 0 1 0 0 2 2 2 4 4 3 5 4 1 2 4 2 2 1 0 0 0 4 2 4 5 1 4 2 4 1 3 5 1 1 1 2 2 1 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 63 1 1 8 2 4 1 1 -1 1 8 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 .98477 +10 10 9 10 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 1 1 1 1 1 1 0 1 0 0 2 2 2 2 4 4 2 1 2 3 3 3 3 1 0 0 0 3 1 2 3 1 3 4 2 4 2 3 1 2 2 2 2 4 1 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 2 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 9 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 4 4 45 1 2 4 2 4 1 1 10 1 4 15 1 1 3 1 4 2 1 0 0 1 0 0 0 1.14237 +1 -1 1 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 2 4 3 4 2 4 3 3 3 3 1 0 0 0 2 4 2 3 2 2 4 2 5 4 4 2 3 2 2 2 3 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 -1 1 0 1 0 0 1 1 1 2 4 4 50 1 2 11 8 3 1 1 1 1 11 12 2 1 4 2 2 -1 2 0 0 0 0 1 0 .85126 +10 10 3 3 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 3 3 3 4 4 3 4 2 3 3 4 3 4 1 0 0 0 2 2 5 5 1 5 1 5 1 5 5 1 2 2 3 3 2 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 5 1 3 2 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 9 3 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 2 7 6 65 2 3 8 8 7 1 1 10 1 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 .65246 +2 -1 1 3 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 3 4 2 3 1 1 3 3 2 3 1 0 0 0 3 1 4 4 1 2 2 4 1 4 4 1 2 4 3 3 2 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 1 1 1 1 0 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 6 6 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 5 5 59 2 3 8 8 4 1 1 2 1 8 10 2 1 4 6 1 -1 2 0 0 0 0 1 0 .81723 +10 10 1 1 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 1 1 0 0 3 3 3 3 5 2 5 1 2 3 3 4 4 1 0 0 0 4 2 2 5 1 4 3 2 1 4 4 1 2 1 3 1 3 1 0 0 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 2 1 4 1 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 1 7 7 81 2 3 8 8 5 1 1 10 1 8 9 2 1 4 2 2 -1 2 0 0 0 0 1 0 .82892 +9 -1 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 4 4 3 3 1 2 2 2 2 2 2 1 3 0 0 0 1 4 4 6 6 6 6 6 6 6 6 2 1 2 1 1 1 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 3 3 1 6 1 0 0 1 0 0 0 1 0 0 1 1 0 1 1 0 0 0 0 1 0 1 0 0 0 2 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 20 4 6 11 9 1 1 1 -1 1 11 1 4 2 3 1 3 1 1 1 0 0 0 0 0 .68733 +11 11 10 10 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 2 2 3 5 3 3 3 3 4 4 4 4 1 0 0 0 4 2 4 3 1 5 1 5 4 5 3 5 1 1 2 4 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 4 3 3 5 1 0 0 0 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 30 1 1 10 9 3 1 1 11 1 10 17 4 2 1 6 1 -1 2 0 0 0 0 1 0 .72532 +2 -1 5 8 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 3 3 3 4 2 3 3 4 4 4 4 2 3 1 0 0 0 2 4 2 5 1 5 1 2 1 5 6 1 1 1 5 1 1 0 0 1 0 0 1 1 0 0 0 0 1 0 0 1 1 0 0 1 1 1 2 1 1 1 0 0 0 0 1 1 1 0 0 1 1 1 1 0 0 0 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 52 2 3 5 9 2 1 1 2 1 5 3 5 2 4 4 4 11 2 0 0 0 0 1 0 .41129 +9 -1 10 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 3 3 2 2 4 4 4 4 4 2 2 1 0 0 0 2 4 3 5 1 3 1 3 1 4 4 2 2 1 5 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 3 1 2 1 0 0 0 1 0 0 1 0 1 0 0 1 1 0 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 52 4 6 10 6 7 1 1 -1 1 10 5 3 2 4 2 2 -1 2 0 0 0 0 1 0 .46236 +2 -1 1 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 1 1 0 0 1 1 1 1 0 0 0 3 3 3 3 2 3 2 2 3 3 3 2 2 1 0 0 0 3 4 3 3 3 3 3 3 3 3 3 2 2 2 2 3 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 3 3 3 1 1 0 1 0 0 0 1 1 1 1 0 0 0 1 1 0 0 0 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 19 2 3 5 6 3 1 1 2 2 1 11 1 1 1 4 3 11 2 0 0 0 0 1 0 .41227 +2 -1 1 9 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 3 3 3 4 4 3 2 2 4 3 4 4 4 1 0 0 0 4 4 2 3 1 4 2 3 4 2 3 2 2 2 4 1 2 0 0 1 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 2 3 2 4 1 0 0 1 0 0 0 1 1 1 1 1 0 1 1 1 0 0 1 1 0 1 0 1 0 2 5 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 3 3 40 4 6 10 6 7 1 1 2 1 10 6 3 2 4 4 1 -1 2 0 0 0 0 1 0 .35347 +2 -1 1 1 1 1 0 1 1 0 0 0 0 0 0 0 1 0 0 1 1 0 1 1 0 0 0 0 0 1 0 1 0 0 2 2 2 4 5 2 5 1 2 2 4 1 1 1 0 0 0 2 1 4 3 1 2 5 4 1 2 3 1 1 1 2 5 1 1 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 2 2 2 1 1 1 0 0 0 0 0 1 1 0 1 0 0 1 0 0 0 0 0 1 0 0 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 4 4 53 3 4 1 6 4 1 1 2 2 2 11 1 1 4 2 4 11 2 0 0 0 0 1 0 .93619 +2 -1 1 6 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 3 3 2 3 5 3 4 4 4 4 4 1 0 0 0 1 2 1 5 1 5 3 4 1 1 1 1 1 3 5 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 3 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 -1 -1 0 0 0 0 0 1 1 1 2 7 7 75 4 6 8 5 7 1 1 2 1 8 3 3 2 4 6 1 -1 2 0 0 0 0 1 0 1.5962 +2 -1 1 8 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 3 3 1 2 1 1 3 3 2 4 1 0 0 0 1 1 1 3 1 1 5 1 5 1 4 1 2 4 1 1 4 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 1 1 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 63 4 5 8 5 1 1 1 2 1 8 3 3 2 4 2 4 11 2 0 0 0 0 1 0 .65204 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 3 3 4 2 4 4 2 4 3 4 3 4 1 0 0 0 3 3 4 5 1 4 1 5 2 5 4 1 1 1 4 1 1 1 1 0 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 9 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 7 6 69 4 6 8 7 1 1 1 2 2 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.13166 +2 -1 10 10 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 2 2 2 3 2 2 2 1 4 2 3 2 3 0 0 1 0 3 2 2 3 2 4 3 2 2 2 3 2 2 2 2 3 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 3 2 3 2 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 3 3 43 2 3 7 3 4 1 4 2 2 1 13 1 1 3 1 3 1 1 0 0 0 1 0 0 1.34058 +10 1 3 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 3 4 2 4 3 3 3 3 3 3 4 4 1 0 0 0 3 3 3 4 2 4 2 3 2 3 4 2 2 2 3 2 2 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 2 2 1 1 0 0 0 0 0 1 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 58 1 2 2 4 1 1 1 1 2 1 13 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.57767 +3 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 2 4 3 3 3 3 3 3 3 3 1 0 0 0 3 2 4 5 1 5 1 4 1 4 3 1 1 1 2 1 1 0 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 1 1 2 2 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 4 4 54 1 2 11 4 3 1 1 3 2 8 13 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.39656 +7 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 4 4 4 5 5 5 5 5 4 4 4 4 1 0 0 0 1 4 3 3 3 3 3 3 3 3 5 1 1 1 5 5 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 5 5 1 5 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 -1 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 35 4 5 1 2 6 1 1 7 1 1 17 3 2 3 1 3 1 1 1 0 0 0 0 0 1.37371 +1 -1 1 9 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 1 2 2 5 4 4 3 4 3 3 3 3 1 0 0 0 2 3 3 2 1 1 4 5 3 4 5 2 3 4 5 4 2 0 0 0 1 0 0 0 0 0 0 1 0 1 0 1 0 0 0 1 1 1 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 6 4 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 2 7 7 82 4 5 8 2 7 1 1 1 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.764 +10 1 4 6 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 4 3 3 3 4 3 5 3 2 4 4 4 3 1 0 0 0 3 2 3 5 2 4 3 4 1 4 4 3 1 3 5 3 1 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 2 3 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 64 4 5 8 2 7 1 1 1 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.05678 +2 -1 1 10 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 4 3 4 3 5 2 4 2 2 3 3 3 3 1 0 0 0 3 4 3 3 3 3 3 3 3 3 3 2 1 4 2 2 2 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 2 2 2 1 0 0 1 0 0 0 1 1 1 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 55 2 3 1 10 1 1 1 2 1 1 8 4 2 4 6 1 -1 2 0 0 0 0 1 0 1.19093 +10 10 3 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 3 3 4 3 2 2 2 3 4 2 2 1 0 0 0 3 2 2 4 2 4 4 2 2 2 2 2 2 2 2 2 2 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 2 4 4 4 1 0 0 1 0 0 0 1 1 1 1 0 0 0 1 1 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 42 2 3 1 10 1 1 1 10 1 1 12 1 1 3 1 3 1 1 0 0 0 1 0 0 1.3865 +11 2 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 3 3 6 6 6 6 2 2 4 2 0 0 1 0 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 6 4 2 2 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 8 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 2 2 27 4 6 9 3 7 2 12 2 2 11 7 4 2 3 1 3 1 1 1 0 0 0 0 0 .50915 +2 -1 1 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 3 5 4 4 2 3 4 4 3 2 1 0 0 0 1 2 2 4 1 4 2 2 1 4 4 2 1 1 4 1 1 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 3 1 1 4 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 8 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 7 6 71 1 2 8 3 4 2 13 2 2 1 2 1 1 4 2 3 11 2 0 0 0 0 1 0 .60468 +2 -1 6 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 4 3 4 3 4 3 3 3 3 0 0 1 0 3 3 3 3 4 4 2 3 2 3 3 2 3 2 2 6 2 0 0 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 2 4 3 2 1 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 2 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 2 2 30 4 5 1 3 7 1 4 2 1 1 12 4 2 2 2 2 -1 2 0 0 0 0 1 0 1.9485 +10 10 1 1 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 2 2 2 2 3 2 3 1 2 3 3 3 3 1 0 0 0 4 2 1 3 2 3 2 2 2 3 3 1 2 2 2 2 3 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 4 2 4 1 1 1 0 1 0 0 0 1 0 1 1 0 1 0 1 1 0 0 0 1 0 0 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 44 1 2 2 10 5 1 1 10 2 1 17 1 1 3 1 4 2 1 0 0 0 1 0 0 1.31229 +5 -1 1 1 1 0 0 0 1 1 1 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 0 0 0 1 0 0 0 0 3 3 3 2 5 3 4 2 2 2 3 3 3 1 0 0 0 2 4 4 5 1 5 1 5 2 3 3 2 4 3 3 1 2 1 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 3 3 5 2 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 67 1 2 8 8 4 1 1 5 1 8 10 2 1 4 6 1 -1 2 0 0 0 0 1 0 .90319 +2 -1 4 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 2 2 2 2 4 4 4 2 2 4 2 2 2 1 0 0 0 3 2 4 4 2 4 2 4 2 5 4 2 2 2 2 2 3 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 2 4 1 0 0 1 0 1 0 1 1 1 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 4 4 49 1 2 1 6 1 1 1 2 1 1 17 2 1 4 2 4 11 2 0 0 0 0 1 0 .95198 +2 -1 1 10 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 4 4 3 4 4 3 5 1 2 4 4 1 1 1 0 0 0 4 4 3 3 3 3 3 3 3 3 5 1 1 1 3 5 1 0 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 3 1 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 43 4 5 9 4 1 1 1 2 2 2 17 3 2 3 1 5 5 1 1 1 1 1 0 0 1.22368 +2 -1 3 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 3 3 3 4 4 4 3 2 4 4 3 3 4 1 0 0 0 3 1 3 3 3 5 3 3 2 3 5 1 1 1 5 3 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 2 1 5 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 45 4 6 9 4 1 1 1 2 2 9 4 3 2 3 1 4 2 1 0 0 1 1 0 0 1.05001 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 2 2 2 2 2 4 2 1 1 3 2 3 3 1 0 0 0 1 1 1 4 1 3 2 2 1 5 2 1 1 1 1 1 4 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 2 1 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 70 3 4 8 2 6 1 1 1 1 8 10 2 1 4 6 1 -1 2 0 0 0 0 1 0 .95684 +6 -1 1 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 3 2 4 5 1 1 3 3 3 3 1 0 0 0 1 3 5 5 1 5 1 5 1 5 5 1 1 1 1 2 2 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 2 2 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 67 3 4 8 2 6 1 1 6 1 8 8 2 1 4 2 2 -1 2 0 0 0 0 1 0 .64184 +10 2 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 1 1 0 0 0 1 0 1 0 0 2 2 2 3 4 2 4 1 1 3 4 2 2 1 0 0 0 4 2 1 4 1 3 5 1 4 4 3 1 4 1 3 1 3 0 0 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 1 2 3 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 57 2 3 1 9 3 1 1 2 1 1 13 2 1 4 2 3 11 2 0 0 0 0 1 0 .87019 +9 -1 10 10 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 1 1 1 1 1 1 1 1 1 0 1 0 0 1 1 2 4 5 5 4 1 1 4 4 3 1 1 0 0 0 3 2 1 5 1 3 1 2 1 5 5 1 4 1 2 2 2 1 1 0 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 2 2 2 5 1 0 0 1 1 1 0 1 1 1 1 1 1 0 1 0 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 4 4 48 2 3 1 9 4 1 1 -1 1 1 13 1 1 4 2 3 11 2 0 0 0 0 1 0 1.10445 +1 -1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 1 0 0 0 0 0 1 0 0 2 2 2 4 5 4 5 2 1 4 4 2 2 1 0 0 0 3 2 3 3 1 3 5 3 2 3 4 2 2 5 3 1 2 1 0 0 1 0 1 0 0 0 1 0 0 1 0 1 0 0 0 2 2 2 1 1 0 0 1 1 1 0 1 1 1 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 63 2 3 8 9 1 1 1 1 1 8 10 2 1 4 2 2 -1 2 0 0 0 0 1 0 .47689 +10 2 10 10 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 4 3 3 3 4 3 4 3 2 2 3 2 3 1 0 0 0 4 4 3 3 3 3 3 3 3 3 2 2 2 4 2 2 2 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 2 2 4 5 1 1 0 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 42 1 2 2 9 4 1 1 2 2 1 13 1 1 3 1 3 1 1 0 0 1 0 0 0 .90479 +10 2 1 6 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 1 0 1 1 1 1 0 0 0 1 0 1 0 0 3 3 3 3 4 4 4 2 4 3 3 2 2 1 0 0 0 3 4 3 4 3 3 3 3 3 3 3 1 2 2 3 2 2 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 2 1 2 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 67 1 1 8 9 3 1 1 2 2 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .90781 +3 -1 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 2 2 3 3 5 3 4 1 2 1 3 2 2 1 0 0 0 1 2 2 3 1 3 3 2 4 2 2 2 1 1 1 4 1 0 1 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 2 2 2 2 1 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 49 2 3 2 4 2 1 1 3 2 1 17 2 1 4 2 3 11 2 0 0 0 0 1 0 .96554 +2 -1 1 1 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 1 1 0 0 1 0 0 0 0 1 0 0 0 0 2 2 2 3 3 3 4 1 2 3 4 4 4 1 0 0 0 2 1 2 5 1 2 1 5 1 5 3 1 2 2 2 2 3 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 2 2 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 1 0 1 0 0 1 0 1 0 0 0 1 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 7 6 70 1 2 2 3 5 1 1 2 2 8 12 2 1 4 2 2 -1 2 0 0 0 0 1 0 .73552 +2 -1 1 7 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 1 0 1 1 1 1 1 1 0 1 1 0 0 0 0 2 2 3 3 3 2 3 3 3 2 3 3 2 1 0 0 0 2 2 2 6 2 3 4 2 1 3 3 1 2 4 2 5 4 1 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 2 1 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 1 0 0 1 0 1 1 0 0 1 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 7 6 66 1 2 8 3 6 2 8 2 2 8 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 .47963 +2 -1 1 9 1 0 1 1 1 1 0 0 0 1 0 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 3 3 3 2 1 2 2 3 2 2 1 0 0 0 3 2 4 5 1 5 1 5 1 5 4 1 2 3 3 4 2 0 1 0 1 0 0 0 0 0 0 1 0 1 0 1 0 0 0 2 2 2 1 1 1 1 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 1 0 1 0 1 0 3 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 4 4 53 1 2 4 3 6 1 4 2 2 4 13 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.30292 +2 -1 1 7 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 3 3 3 2 4 3 3 2 3 3 4 3 3 1 0 0 0 4 2 4 4 2 4 2 4 2 4 4 2 2 2 2 2 3 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 2 2 2 2 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 6 3 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 4 4 49 2 3 1 5 4 1 1 2 1 1 12 2 1 4 2 4 11 2 0 0 0 0 1 0 1.21497 +1 -1 1 5 1 0 1 1 0 1 1 0 0 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 1 1 0 0 0 2 2 2 2 5 3 3 1 2 2 3 2 2 1 0 0 0 3 2 3 5 1 4 1 4 2 5 3 2 2 2 3 2 4 0 0 1 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 2 2 1 1 0 0 0 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 2 9 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 7 6 65 1 2 8 10 4 1 1 1 1 8 6 2 1 4 2 2 -1 2 0 0 0 0 1 0 .74626 +9 -1 1 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 4 2 3 3 2 3 2 2 2 2 1 0 0 0 3 2 3 3 5 4 2 3 2 4 5 3 3 3 2 3 1 1 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 3 2 4 1 1 0 0 0 0 0 0 1 1 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 71 1 2 8 7 2 1 1 -1 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .82614 +11 11 1 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 3 3 2 2 3 3 3 4 3 2 3 3 1 0 0 0 4 1 3 3 3 3 4 2 3 3 2 1 1 2 2 3 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 4 2 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 7 7 82 2 3 8 7 7 1 1 11 1 8 7 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.86015 +4 -1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 0 0 1 0 1 0 0 1 2 2 4 5 2 4 1 3 4 4 3 2 1 0 0 0 2 2 4 3 1 5 4 3 1 5 5 1 1 2 5 2 1 0 1 1 0 0 1 0 0 0 0 0 1 1 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 7 9 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 1 1 0 1 1 1 7 6 69 2 3 8 6 7 1 1 4 1 8 8 2 1 4 6 1 -1 2 0 0 0 0 1 0 .26726 +10 10 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 3 3 4 3 4 2 4 4 4 4 4 1 0 0 0 3 4 6 6 6 6 6 6 6 6 4 1 1 1 4 1 2 1 1 1 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 2 2 2 2 1 0 0 1 0 0 0 1 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 2 2 34 2 3 1 6 4 1 1 10 2 1 12 1 1 2 2 2 -1 2 0 0 0 0 1 0 .77064 +10 4 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 2 2 3 3 5 5 1 1 1 4 4 4 4 0 1 0 0 3 2 1 3 1 5 4 1 1 6 2 2 1 2 2 2 2 1 0 0 0 1 1 0 0 0 0 0 0 1 1 1 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 1 0 1 0 0 0 0 0 2 7 6 65 4 6 8 6 5 1 1 4 1 8 3 4 2 4 4 1 -1 2 0 0 0 0 1 0 .41701 +10 10 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 3 3 3 3 4 3 5 2 4 3 3 2 2 1 0 0 0 3 1 4 5 1 5 2 3 4 2 5 1 1 1 3 1 1 0 1 1 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 2 2 4 1 1 1 0 1 0 0 0 0 1 1 1 1 1 0 1 1 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 23 4 5 1 6 6 1 1 10 1 1 7 2 1 1 4 1 -1 2 0 0 0 0 1 0 .79529 +2 -1 1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 1 1 1 0 1 0 0 0 0 0 3 3 3 4 1 2 5 4 5 2 4 2 3 1 0 0 0 4 1 2 2 1 1 5 1 4 1 5 1 1 1 2 1 1 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 6 5 60 4 6 8 6 1 1 1 2 1 8 3 5 2 4 2 2 -1 2 0 0 0 0 1 0 .52233 +10 10 3 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 3 2 2 4 2 4 1 2 2 4 4 2 2 1 0 0 0 4 1 2 5 1 4 2 2 1 1 2 1 1 1 4 2 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 4 2 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 1 1 0 1 1 1 7 7 80 4 6 8 6 1 1 1 10 1 8 2 5 2 4 6 1 -1 2 0 0 0 0 1 0 .3664 +10 2 6 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 4 4 3 4 2 2 5 3 4 4 4 4 4 1 0 0 0 4 4 2 5 2 5 3 3 4 3 2 1 1 2 5 3 3 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 5 3 5 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 56 4 5 1 6 7 1 1 2 1 1 7 5 2 4 6 1 -1 2 0 0 0 0 1 0 .51071 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 5 5 5 5 5 4 4 4 4 0 0 1 0 4 1 5 5 1 5 1 2 1 5 1 1 1 1 5 1 1 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 3 3 5 5 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 24 4 6 7 6 7 1 1 -1 1 7 2 5 2 3 3 2 1 1 0 1 0 0 0 0 .62982 +10 10 3 1 1 0 1 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 4 4 3 4 4 5 5 5 5 4 4 2 3 1 0 0 0 4 4 5 5 2 5 5 5 3 3 5 1 2 1 5 2 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 3 5 1 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 1 0 1 0 1 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 46 4 6 10 6 3 1 1 10 1 10 3 1 1 4 2 2 -1 2 0 0 0 0 1 0 .41646 +4 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 1 0 1 0 0 0 0 0 4 4 4 3 4 2 2 1 4 4 4 1 1 1 0 0 0 4 2 5 5 1 5 1 4 1 5 1 1 1 1 1 1 1 0 0 1 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 47 4 6 7 6 7 1 1 4 1 7 2 5 2 4 4 1 -1 2 0 0 0 0 1 0 .47937 +10 10 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 1 0 0 1 0 1 0 0 0 0 0 4 4 4 3 4 5 5 1 5 2 4 2 2 0 0 1 0 4 4 4 3 2 3 3 3 3 2 4 1 1 4 5 2 1 0 0 1 1 0 0 1 0 0 1 0 1 1 0 0 0 0 0 2 2 5 5 1 1 0 1 0 0 0 1 1 1 1 0 1 1 1 0 0 0 1 0 1 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 21 3 4 5 6 3 1 1 10 2 1 16 1 1 1 4 4 11 2 0 0 0 0 1 0 .37731 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 3 4 4 4 1 3 2 4 3 3 1 0 0 0 3 3 4 4 5 4 2 4 2 5 3 1 1 1 3 3 1 1 0 0 1 0 1 0 0 0 0 1 1 1 0 0 0 0 0 2 2 1 1 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 9 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 5 5 59 2 3 8 5 3 1 1 2 1 8 10 2 1 4 2 3 11 2 0 0 0 0 1 0 .77164 +9 -1 10 10 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 4 3 2 1 4 4 4 4 4 0 0 1 0 4 4 5 5 1 5 1 4 2 5 4 1 1 1 2 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 5 5 5 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 3 3 40 4 5 1 6 1 1 1 -1 1 1 9 5 2 4 4 1 -1 2 0 0 0 0 1 0 .59169 +10 11 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 5 2 5 1 1 4 4 4 4 1 0 0 0 3 4 3 3 3 3 3 3 3 3 4 2 3 2 4 4 2 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 1 3 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 -1 0 0 0 0 0 1 1 1 2 3 3 44 1 2 11 7 2 1 1 11 2 1 17 4 2 3 1 4 2 1 0 0 1 1 0 0 1.68526 +1 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 4 4 2 2 1 1 3 4 4 4 1 0 0 0 4 2 4 5 1 1 1 1 1 5 5 1 1 1 2 1 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 3 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 2 7 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 7 6 69 2 3 8 7 3 1 1 1 1 8 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 .70206 +6 -1 1 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 0 1 0 0 0 0 0 1 2 3 4 5 5 5 5 5 4 4 4 4 1 0 0 0 4 2 5 5 1 5 1 2 1 5 5 1 1 1 5 2 1 0 1 0 1 0 1 0 0 0 1 1 0 1 0 0 0 0 0 1 2 1 5 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 7 6 67 4 5 8 11 2 1 1 6 1 8 6 3 2 4 6 2 11 2 0 0 0 0 1 0 .55336 +1 -1 4 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 2 4 5 4 1 3 4 3 3 3 1 0 0 0 3 2 4 4 1 5 1 5 1 5 2 1 2 3 4 2 2 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 2 2 4 1 0 0 0 0 0 0 1 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 72 2 3 8 11 6 1 1 1 1 8 6 2 1 4 6 1 -1 2 0 0 0 0 1 0 .79423 +10 10 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 1 0 0 0 0 0 2 2 1 4 5 4 5 1 1 4 4 2 2 1 0 0 0 2 1 4 5 1 5 2 4 1 5 5 1 1 1 5 3 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 1 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 7 6 73 1 2 8 11 2 1 1 10 1 8 17 2 1 4 2 3 11 2 0 0 0 0 1 0 .62692 +6 -1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 0 1 1 0 0 0 0 1 1 1 3 5 3 5 1 5 3 3 2 3 1 0 0 0 2 1 2 3 2 1 5 2 4 3 5 1 4 2 5 5 1 0 0 1 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 1 1 1 1 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 5 5 55 1 2 4 11 2 1 1 6 1 4 12 2 1 4 2 4 11 2 0 0 0 0 1 0 .68376 +10 3 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 1 0 0 0 0 0 1 0 0 0 0 3 2 1 3 4 2 5 1 1 3 3 3 3 1 0 0 0 3 2 2 2 1 4 5 1 1 4 4 2 1 2 2 1 3 1 0 1 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 6 5 63 1 2 8 11 4 1 1 3 1 8 9 2 1 4 2 2 -1 2 0 0 0 0 1 0 .68376 +10 10 11 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 2 3 2 2 2 3 3 3 3 0 0 1 0 3 4 3 2 3 2 4 3 4 4 2 2 2 2 2 2 2 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 25 3 4 7 5 1 1 4 10 2 1 3 5 2 2 2 2 -1 2 0 0 0 0 1 0 1.07019 +10 10 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 4 1 4 4 2 3 2 3 4 4 3 4 0 0 1 0 4 4 3 4 2 3 3 2 3 4 3 3 2 3 2 3 4 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 2 4 2 2 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 7 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 19 4 6 7 5 1 1 4 10 1 7 3 5 2 2 2 2 -1 2 0 0 0 0 1 0 1.35643 +2 -1 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 2 2 3 3 2 2 2 3 3 2 3 1 0 0 0 3 4 2 3 2 3 2 3 3 2 2 2 2 2 2 2 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 4 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 27 4 6 7 5 1 1 1 2 1 7 3 5 2 3 1 5 3 1 1 0 1 0 0 0 1.11865 +2 -1 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 4 2 1 1 1 1 2 3 4 4 1 0 0 0 3 2 1 4 4 1 5 1 5 2 5 1 5 5 1 1 3 1 0 1 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 2 2 5 1 1 0 1 0 0 0 0 1 1 1 1 0 1 1 1 1 0 0 0 1 0 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 1 1 1 0 0 0 0 0 2 5 5 59 4 5 4 9 4 1 1 2 2 4 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 .87605 +10 10 3 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 3 3 4 4 2 2 2 2 2 2 2 2 2 1 0 0 0 2 2 4 3 2 2 4 2 2 2 1 1 1 1 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 1 1 1 1 0 0 1 1 0 1 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 60 2 3 8 5 1 2 12 10 1 8 3 2 1 4 2 2 -1 2 0 0 0 0 1 0 .2746 +11 3 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 1 0 0 1 2 2 3 2 2 3 1 1 3 3 2 2 1 0 0 0 2 1 1 1 3 1 5 1 4 3 2 2 1 3 2 4 4 0 1 0 1 0 1 0 0 0 1 0 0 1 0 1 0 0 0 2 2 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 54 4 5 7 5 3 1 1 3 2 2 10 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.35485 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 1 2 3 2 4 3 4 4 4 4 0 0 1 0 4 4 2 4 2 5 5 4 2 3 2 2 2 2 2 3 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 3 3 5 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 18 4 6 7 5 1 2 5 -1 2 10 16 3 2 3 3 5 7 1 1 1 1 1 0 0 .59332 +10 2 5 9 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 3 4 3 3 3 3 3 3 3 4 3 3 1 0 0 0 3 4 3 3 3 3 3 3 3 3 3 2 2 3 2 3 3 1 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 0 0 0 1 0 0 0 1 1 1 1 0 1 1 0 1 0 0 1 1 0 1 1 1 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 2 2 29 4 6 9 5 3 2 9 2 2 8 16 2 1 2 2 3 11 2 0 0 0 0 1 0 .48756 +2 -1 3 9 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 1 1 0 0 0 0 3 2 3 4 1 4 5 2 5 4 4 3 2 1 0 0 0 2 4 3 4 1 5 4 2 4 5 2 1 1 1 4 2 1 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 1 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 22 4 5 5 5 4 1 1 2 2 1 16 4 2 3 1 3 1 1 1 0 0 0 0 0 1.29831 +11 11 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 3 3 2 3 2 3 4 4 3 3 1 0 0 0 2 2 2 3 2 3 3 2 3 3 3 3 2 3 2 2 2 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 3 3 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 7 75 4 5 8 10 7 1 4 11 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.46679 +1 -1 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 2 2 2 2 2 2 2 2 2 2 1 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 2 2 2 2 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 36 4 5 1 10 6 1 4 1 1 1 11 4 2 3 1 4 2 1 1 0 0 1 0 0 1.34374 +3 -1 1 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 1 2 1 2 2 2 3 1 0 0 0 2 2 2 3 2 2 3 3 3 4 3 2 2 4 1 2 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 3 4 2 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 26 1 2 1 10 4 1 1 3 2 1 11 4 2 3 1 5 3 1 1 0 1 0 0 0 1.34415 +9 -1 8 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 5 2 4 2 2 4 4 4 4 1 0 0 0 4 2 2 4 2 4 3 2 3 2 2 4 2 3 2 2 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 3 4 4 5 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 70 4 6 8 10 7 1 1 -1 1 8 4 3 2 4 6 1 -1 2 0 0 0 0 1 0 .94704 +1 -1 1 3 1 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 2 2 4 2 2 2 2 2 2 3 3 4 1 0 0 0 3 1 4 5 1 4 1 3 1 5 2 1 1 1 1 1 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 1 1 2 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 73 3 4 8 10 3 1 1 1 1 8 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 .62783 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 2 4 2 2 1 2 3 3 3 3 1 0 0 0 3 2 2 1 1 2 4 2 4 2 3 2 2 1 2 2 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 9 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 7 6 66 2 3 1 10 2 1 1 1 1 1 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 .87033 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 5 3 5 2 5 4 4 4 4 1 0 0 0 3 4 6 6 6 6 6 6 6 6 6 1 1 1 4 6 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 3 6 5 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 -1 10 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 22 3 4 2 10 2 1 1 -1 2 2 16 4 2 1 4 3 11 2 0 0 0 0 1 0 .95371 +1 -1 2 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 3 3 3 2 2 3 2 1 2 3 3 3 4 1 0 0 0 3 4 3 5 1 5 2 5 1 5 5 1 2 1 2 1 2 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 4 2 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 67 1 2 8 7 7 1 1 1 1 8 6 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.2316 +10 10 9 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 4 4 4 3 6 2 2 2 3 4 3 4 1 0 0 0 4 2 2 5 1 5 1 5 1 3 4 1 1 2 2 2 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 2 2 3 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 19 2 3 5 7 8 1 1 10 2 1 16 1 1 3 4 4 1 1 0 0 0 1 0 0 1.63397 +9 -1 10 10 0 0 1 1 0 1 0 1 0 1 0 0 1 0 0 0 0 1 1 0 0 1 1 0 1 0 0 1 0 0 2 3 3 4 4 2 3 2 2 4 4 2 2 1 0 0 0 4 2 3 5 1 3 2 2 3 3 5 1 1 1 2 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 1 2 5 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 50 2 3 1 2 6 2 5 -1 1 1 11 6 -1 4 6 2 11 2 0 0 0 0 1 0 .71632 +10 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 3 2 2 4 3 1 2 3 3 4 4 1 0 0 0 3 2 2 3 1 5 3 3 3 4 4 1 1 1 2 1 3 0 1 0 1 0 1 0 0 0 0 1 1 1 0 0 0 0 0 2 2 3 1 1 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 51 1 2 1 6 4 1 1 10 1 1 13 1 1 3 1 3 1 1 0 0 1 0 0 0 .97642 +10 10 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 2 2 2 2 2 1 2 2 2 1 0 0 0 2 2 2 2 2 2 4 2 2 4 2 1 2 2 1 2 1 0 1 1 0 0 1 0 0 0 0 0 1 1 1 0 0 0 0 2 2 1 1 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 8 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 40 4 5 1 6 7 2 9 10 2 10 3 2 1 3 1 5 4 1 0 0 1 1 0 0 .31453 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 2 2 2 3 4 3 2 1 4 2 3 2 4 1 0 0 0 1 2 2 3 1 2 4 2 4 4 4 1 4 2 4 4 1 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 2 2 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 1 1 1 2 7 6 70 1 2 8 6 7 1 1 1 1 8 7 2 1 4 6 1 -1 2 0 0 0 0 1 0 .46884 +2 -1 1 1 0 0 0 0 0 1 1 0 0 0 1 1 1 0 0 1 0 0 1 1 1 1 0 0 0 1 1 1 0 0 1 1 1 2 2 1 3 1 1 3 3 3 3 1 0 0 0 1 1 2 4 2 2 4 3 2 3 3 3 5 3 2 1 5 1 0 1 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 2 2 1 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 1 7 7 76 1 2 8 6 5 1 1 2 1 8 11 2 1 4 6 1 -1 2 0 0 0 0 1 0 .41194 +2 -1 3 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 2 2 2 3 2 4 5 5 3 3 4 3 2 1 0 0 0 2 2 3 5 1 4 4 2 3 5 5 1 1 1 4 1 1 1 0 0 1 0 1 0 0 0 1 0 1 0 0 1 0 0 0 2 2 2 5 1 0 0 0 0 0 0 1 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 2 9 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 63 2 3 1 2 6 1 1 2 2 1 12 1 1 3 1 3 1 1 0 0 1 0 0 0 1.22343 +10 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 2 3 3 3 3 3 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 5 1 1 5 5 3 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 1 1 2 1 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 1 4 2 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 3 3 35 4 6 9 6 7 1 1 10 2 9 17 5 2 1 4 2 11 2 0 0 0 0 1 0 .35347 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 1 1 0 0 0 0 1 1 0 0 4 3 3 4 5 6 3 2 5 4 4 4 4 1 0 0 0 4 4 6 6 6 6 6 6 6 6 4 1 1 1 2 2 3 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 1 2 5 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 1 1 1 0 2 9 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 56 3 4 2 2 7 1 1 -1 2 8 9 2 1 4 2 2 -1 2 0 0 0 0 1 0 .70003 +2 -1 4 6 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 1 1 1 0 1 0 0 1 1 1 0 0 3 2 2 2 3 4 2 2 2 3 3 3 2 0 1 0 0 2 1 2 5 1 2 4 2 1 4 4 1 1 1 3 1 2 1 0 0 1 1 0 0 0 0 1 0 0 1 1 0 0 0 0 2 1 2 1 1 1 0 1 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 4 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 20 4 5 5 6 3 1 1 2 2 1 16 2 1 1 4 2 11 2 0 0 0 0 1 0 .52939 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 1 0 0 1 0 0 0 0 2 2 2 2 3 3 3 1 2 4 4 2 3 1 0 0 0 2 1 3 3 1 2 3 2 3 3 3 2 3 2 2 3 1 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 7 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 66 3 4 8 2 7 1 1 2 1 8 16 1 1 4 2 2 -1 2 0 0 0 0 1 0 .65832 +3 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 1 0 0 0 1 0 0 0 0 2 3 2 2 2 3 3 1 2 2 3 2 3 1 0 0 0 2 2 2 4 2 3 2 3 2 4 2 1 1 3 2 2 2 1 1 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 2 3 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 6 5 64 1 2 8 5 4 1 1 3 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.07511 +2 -1 1 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 2 1 3 3 3 3 3 4 4 4 4 1 0 0 0 3 3 3 3 3 3 1 3 3 3 5 5 3 5 3 5 5 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 2 2 2 2 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 7 6 66 4 5 8 1 7 1 1 2 1 8 3 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.59958 +2 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 1 1 0 0 1 0 1 0 0 0 0 2 2 4 2 3 1 3 3 3 4 4 4 4 1 0 0 0 3 1 5 5 1 4 3 1 4 3 3 1 3 1 1 5 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 5 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 6 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 2 2 31 4 5 7 6 1 1 1 2 2 2 4 3 2 3 1 5 2 1 0 0 0 1 0 0 .61509 +3 -1 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 2 2 2 2 2 1 1 1 2 2 2 2 1 0 0 0 4 1 2 2 1 2 3 2 2 3 3 1 3 3 2 2 3 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 3 2 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 9 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 7 6 65 1 2 8 5 4 1 1 3 1 8 10 2 1 4 2 3 11 2 0 0 0 0 1 0 .83253 +10 10 1 2 0 0 0 1 1 0 0 0 0 1 1 0 0 0 0 1 0 0 1 1 1 1 0 0 1 1 0 1 0 0 2 2 2 2 4 2 2 1 2 2 2 2 2 1 0 0 0 4 2 2 2 1 2 2 2 2 4 3 1 1 2 2 2 2 0 0 1 1 0 1 0 0 0 1 0 1 0 0 1 0 0 0 2 2 2 1 1 1 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 2 4 4 52 2 3 1 5 4 1 1 10 2 4 13 2 1 4 2 3 11 2 0 0 0 0 1 0 1.61544 +3 -1 1 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 1 0 0 0 0 3 3 3 4 2 1 2 1 2 3 2 4 3 1 0 0 0 2 2 4 1 2 5 5 4 4 4 3 1 2 1 4 5 3 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 4 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 7 7 79 4 6 8 8 7 1 1 3 1 8 4 2 1 4 6 3 11 2 0 0 0 0 1 0 1.73513 +4 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 1 2 2 2 2 2 4 4 4 4 1 0 0 0 3 2 2 4 2 2 4 2 2 5 3 2 2 2 2 2 2 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 4 2 2 2 1 1 0 1 0 0 0 1 1 1 1 0 0 0 1 1 0 0 0 1 0 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 20 1 2 5 6 3 1 1 4 2 1 17 1 1 1 4 2 11 2 0 0 0 0 1 0 .36487 +10 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 1 1 4 2 4 4 2 2 2 2 1 2 1 0 0 0 4 2 5 5 1 5 1 5 1 5 5 1 1 2 2 5 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 2 2 1 1 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 9 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 1 1 1 0 0 1 1 1 1 4 4 51 1 2 1 6 5 1 1 10 1 1 17 1 1 4 2 3 11 2 0 0 0 0 1 0 .79438 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 1 3 4 5 5 2 2 3 3 3 3 1 0 0 0 4 2 2 5 1 5 2 1 1 2 2 1 3 1 2 2 2 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 2 1 4 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 2 9 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 1 1 1 0 0 1 1 1 1 7 7 82 1 2 8 6 5 1 1 2 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .41194 +2 -1 2 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 3 3 3 3 3 3 2 2 3 2 1 0 0 0 4 2 2 5 2 5 4 4 1 4 2 1 1 1 3 1 4 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 3 3 3 3 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 5 5 57 2 3 1 6 4 1 1 2 1 1 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .60439 +10 2 8 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 2 4 4 4 4 4 4 4 4 4 1 0 0 0 3 2 3 5 3 5 2 5 1 5 4 1 3 3 3 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 41 4 5 2 6 2 1 1 2 1 2 17 3 2 3 5 3 2 1 1 0 0 1 0 0 .55986 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 3 3 3 3 3 3 2 2 2 2 1 0 0 0 4 2 3 5 1 5 4 2 1 5 3 1 1 1 3 1 4 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 2 3 2 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 51 1 2 1 6 4 1 1 2 1 1 17 3 2 4 4 1 -1 2 0 0 0 0 1 0 .6426 +10 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 2 3 2 3 3 3 3 3 3 3 1 0 0 0 3 2 3 4 1 4 3 2 1 2 2 1 1 2 2 2 2 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 3 3 2 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 1 1 1 0 0 1 1 1 2 7 6 74 1 2 8 6 4 1 1 1 2 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .46884 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 4 2 3 3 2 4 5 2 5 4 4 2 2 1 0 0 0 4 3 2 5 1 5 2 2 2 5 3 1 2 4 5 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 2 1 5 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 54 4 5 1 9 3 1 1 -1 1 1 1 1 1 4 6 2 11 2 0 0 0 0 1 0 .82638 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 2 3 4 3 2 4 2 5 4 4 4 4 1 0 0 0 4 2 5 5 1 1 1 4 2 5 5 1 2 1 2 2 1 0 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 2 3 3 5 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 8 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 69 4 6 8 9 7 1 1 -1 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .45247 +10 3 1 8 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 2 4 2 4 2 1 4 4 4 4 1 0 0 0 3 2 5 5 1 5 5 5 1 5 1 1 4 2 2 1 1 0 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 2 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 80 1 2 8 9 5 1 1 3 1 8 17 2 1 4 2 6 11 2 0 0 0 0 1 0 .54829 +2 -1 1 10 1 0 0 1 0 1 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 0 0 1 0 0 0 0 2 2 2 4 4 2 5 2 5 4 2 2 4 1 0 0 0 1 4 3 5 1 5 1 5 1 3 4 1 1 1 4 4 1 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 5 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 7 6 65 2 3 8 9 3 1 1 2 1 8 3 2 1 4 2 2 -1 2 0 0 0 0 1 0 .53031 +2 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 2 2 3 2 4 4 2 2 3 3 2 2 1 0 0 0 2 3 6 3 1 6 4 6 3 2 6 1 1 1 4 4 2 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 2 2 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 1 0 0 0 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 35 2 3 1 11 3 1 1 2 1 1 11 1 1 3 1 5 3 1 0 0 1 1 0 0 1.4317 +1 -1 1 6 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 1 1 1 1 0 0 0 0 0 1 0 0 0 3 2 2 2 2 2 3 1 2 3 4 2 2 1 0 0 0 2 3 3 3 1 3 4 3 4 4 1 2 4 1 4 4 3 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 3 2 2 4 1 1 0 0 0 0 0 1 0 1 0 0 1 1 0 1 1 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 38 1 2 1 11 5 1 4 1 1 1 17 1 1 3 1 4 2 1 0 0 1 0 0 0 1.37063 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 1 1 0 0 1 1 1 1 0 0 2 2 2 2 3 1 3 1 2 3 3 3 3 1 0 0 0 3 2 2 4 2 4 3 2 3 4 3 3 3 4 2 2 3 1 0 1 1 0 0 0 0 0 0 0 1 1 0 0 1 0 0 2 2 3 1 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 28 1 2 1 2 5 1 1 2 1 1 16 4 2 2 2 2 -1 2 0 0 0 0 1 0 1.37413 +11 11 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 1 1 0 1 1 1 1 0 0 2 2 2 3 4 4 4 2 2 2 3 2 2 1 0 0 0 2 2 4 4 2 3 2 3 2 4 2 1 2 1 2 2 2 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 2 9 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 6 5 63 1 2 1 10 5 1 1 11 1 1 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.37297 +2 -1 1 3 1 1 1 1 1 1 1 1 0 0 1 0 1 0 0 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 1 1 1 3 4 4 3 2 2 3 3 2 2 1 0 0 0 1 2 4 4 3 4 4 4 2 5 3 3 3 3 2 3 2 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 2 2 4 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 1 0 1 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 6 5 64 1 1 1 10 6 1 1 2 1 1 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.32199 +2 -1 1 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 1 0 0 1 1 1 0 0 1 2 2 2 2 2 3 2 3 3 3 3 3 1 0 0 0 3 3 3 4 2 2 3 2 2 4 2 2 2 2 2 2 2 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 2 2 2 2 1 1 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 4 4 53 1 2 1 10 6 1 1 2 1 1 17 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.61568 +1 -1 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 3 2 2 2 2 2 2 2 2 2 2 3 3 1 0 0 0 3 2 2 4 2 3 2 2 2 4 4 2 2 3 2 3 2 1 0 1 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 2 2 2 3 1 0 0 0 0 0 0 1 1 1 1 1 1 0 1 0 0 0 0 0 0 1 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 1 6 5 61 2 3 8 10 4 1 1 1 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .56272 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 1 0 1 0 1 0 0 1 1 3 3 4 2 3 5 5 4 3 2 2 1 0 0 0 1 3 3 3 1 4 3 3 1 3 3 1 1 1 3 1 1 0 0 1 0 1 1 0 0 0 0 0 1 0 1 0 0 0 0 1 2 2 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 -1 -1 0 0 0 0 0 1 1 1 2 7 7 82 2 3 8 10 2 1 1 2 1 8 16 3 2 4 6 1 -1 2 0 0 0 0 1 0 1.12486 +2 -1 3 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 3 3 3 3 3 3 2 3 2 2 3 3 1 0 0 0 4 2 4 4 3 4 2 4 4 4 2 2 2 2 2 2 2 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 1 1 0 1 1 1 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 28 2 3 1 8 3 1 1 2 1 1 8 1 1 3 1 4 2 1 1 1 0 0 0 0 1.58494 +6 -1 4 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 4 3 3 3 4 3 3 3 3 1 0 0 0 3 2 2 4 2 4 2 2 2 4 4 2 2 2 2 2 2 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 2 2 3 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 7 6 71 2 3 8 8 1 1 1 6 2 1 17 1 1 4 2 2 -1 2 0 0 0 0 1 0 .52808 +2 -1 3 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 4 3 3 2 2 3 3 3 3 1 0 0 0 4 2 3 4 2 4 2 3 2 4 3 2 2 2 2 2 2 0 1 0 0 1 1 0 0 0 0 1 0 0 1 1 0 0 0 3 3 4 2 1 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 4 4 54 1 2 10 8 4 1 1 2 1 10 8 2 1 4 6 1 -1 2 0 0 0 0 1 0 .85126 +9 -1 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 3 2 2 1 3 2 2 2 4 3 3 1 0 0 0 3 2 2 4 1 5 1 2 2 4 3 1 1 1 1 1 1 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 3 2 3 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 49 3 4 1 11 3 1 1 -1 1 1 7 4 2 4 4 2 11 2 0 0 0 0 1 0 1.12604 +3 -1 1 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 1 1 1 1 0 0 0 1 0 1 0 0 2 2 2 2 1 2 3 2 2 3 3 2 2 1 0 0 0 3 2 2 5 2 4 1 4 1 4 4 1 2 2 2 2 3 0 0 1 1 0 1 0 0 0 1 0 1 1 0 0 0 0 0 1 1 2 1 1 0 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 75 2 3 8 8 4 1 1 3 1 8 9 2 1 4 2 2 -1 2 0 0 0 0 1 0 .67438 +9 -1 7 8 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 4 4 4 4 5 3 4 4 3 3 4 3 3 1 0 0 0 4 4 3 3 1 5 1 4 1 4 3 2 2 3 3 2 2 0 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 3 3 1 0 0 0 0 0 0 1 0 1 1 0 1 1 0 0 0 0 0 0 0 0 1 0 0 1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 53 4 6 10 11 1 1 1 -1 1 10 4 1 1 4 6 3 11 2 0 0 0 0 1 0 .97661 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 3 2 3 3 4 3 2 2 4 4 2 2 1 0 0 0 4 2 2 2 3 4 4 2 3 3 4 1 5 3 3 2 3 0 0 1 0 1 1 0 0 0 1 0 0 0 1 0 0 0 0 1 1 3 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 7 7 84 1 2 8 8 4 1 1 1 1 8 9 2 1 4 2 2 -1 2 0 0 0 0 1 0 .79356 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 4 4 1 4 3 3 3 3 4 4 4 4 0 0 1 0 4 4 3 3 2 3 2 3 3 3 3 1 2 1 3 2 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 3 3 3 3 1 0 0 0 1 0 0 1 1 1 1 1 1 1 1 0 0 0 0 1 1 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 21 4 5 1 11 2 1 1 -1 1 1 4 4 2 3 1 3 1 1 1 0 0 0 0 0 1.05585 +9 -1 7 2 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 3 3 3 2 2 2 3 2 2 3 3 2 3 1 0 0 0 3 2 2 3 1 4 2 2 2 4 3 2 2 3 2 2 3 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 3 2 3 2 0 0 0 1 0 0 0 1 0 1 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 2 3 3 35 1 2 2 7 4 2 8 -1 2 1 15 1 1 3 1 4 2 1 1 0 0 0 0 0 .78109 +9 -1 9 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 4 4 5 5 5 5 4 4 4 4 1 0 0 0 4 3 3 3 3 3 3 3 3 3 5 3 3 5 3 2 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 3 1 4 5 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 66 1 2 8 7 4 1 1 -1 1 8 13 2 1 4 6 1 -1 2 0 0 0 0 1 0 .82614 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 3 4 3 2 2 2 2 3 2 4 4 1 0 0 0 3 4 6 6 6 6 6 6 6 6 4 1 2 2 2 2 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 7 6 71 3 4 8 7 9 1 1 1 2 8 16 2 1 4 6 2 11 2 0 0 0 0 1 0 1.2736 +1 -1 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 2 3 2 3 3 3 2 2 3 3 3 0 1 0 0 3 4 3 3 2 3 3 3 3 3 4 1 1 1 1 1 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 2 2 2 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 -1 9 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 1 1 23 3 4 1 7 2 1 1 1 2 1 16 2 1 1 4 4 11 2 0 0 0 0 1 0 2.1674 +1 -1 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 4 4 4 3 1 3 3 2 3 2 2 2 2 1 0 0 0 4 4 3 3 3 3 3 3 3 3 2 1 1 1 2 3 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 3 1 4 1 0 0 0 0 1 0 1 1 1 0 0 0 1 1 0 1 0 0 1 0 1 1 0 0 1 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 22 4 5 11 7 1 1 1 1 1 11 5 5 2 3 1 3 1 1 1 0 0 0 0 0 1.34614 +8 -1 9 9 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 2 3 4 4 5 5 5 3 2 3 2 2 0 0 1 0 4 2 2 5 2 4 4 4 3 3 3 1 4 3 4 1 3 0 1 0 1 0 1 0 0 0 0 1 0 1 0 0 0 0 0 2 1 3 4 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 0 1 1 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 19 2 3 5 9 3 1 1 8 1 5 1 4 2 1 4 5 11 2 0 0 0 0 1 0 .3895 +10 10 1 3 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 2 2 3 3 4 4 4 2 3 3 3 3 3 1 0 0 0 4 1 2 4 2 2 3 2 3 4 4 1 1 1 4 2 1 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 2 2 3 1 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 51 1 2 2 6 4 1 1 10 2 1 17 1 1 3 1 5 3 1 0 0 1 1 0 0 .45324 +9 -1 9 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 2 4 5 6 3 6 2 4 4 4 4 0 0 1 0 4 2 5 5 1 5 3 5 3 5 3 3 1 1 5 3 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 5 5 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 22 3 4 2 9 2 1 1 -1 1 2 1 4 2 1 4 3 11 2 0 0 0 0 1 0 .77353 +10 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 4 4 4 2 4 3 3 3 3 1 0 0 0 4 4 3 3 3 3 3 3 3 3 4 1 1 2 3 2 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 2 2 2 1 1 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 45 4 6 10 6 1 1 1 10 1 10 17 3 2 4 4 1 -1 2 0 0 0 0 1 0 .46236 +10 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 0 0 0 1 0 0 0 0 2 2 3 3 4 2 4 1 3 4 4 2 3 1 0 0 0 4 2 4 3 1 5 3 2 2 2 4 1 2 1 1 1 5 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 -1 -1 0 0 0 0 0 1 1 1 1 5 5 58 1 1 1 6 4 1 1 10 1 1 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 .68479 +9 -1 9 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 3 3 3 3 3 2 3 2 4 2 3 2 2 0 0 0 1 3 4 6 6 6 6 6 6 6 6 3 2 2 1 4 3 2 0 0 1 0 1 0 1 0 0 0 0 0 0 1 1 1 0 0 3 2 3 3 1 1 0 0 0 0 0 1 1 0 0 0 1 1 1 1 0 0 0 1 0 0 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 -1 0 0 0 0 0 1 1 1 1 1 1 21 3 4 2 9 4 1 1 -1 1 2 4 4 2 1 4 2 11 2 0 0 0 0 1 0 .47397 +10 10 9 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 3 3 3 3 3 4 4 3 3 1 0 0 0 4 2 2 3 2 3 3 2 3 3 2 2 2 2 3 3 2 0 1 1 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 3 3 3 3 1 0 0 1 0 0 0 1 1 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 2 7 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 44 4 5 1 9 7 1 1 10 1 1 17 1 1 4 4 1 -1 2 0 0 0 0 1 0 1.30525 +1 -1 1 3 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 1 0 0 1 0 0 0 0 2 3 3 2 4 3 3 2 2 4 4 3 3 1 0 0 0 2 2 2 3 3 2 4 2 4 3 3 2 3 2 3 3 4 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 2 2 2 1 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 1 1 0 0 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 21 2 3 5 7 3 1 1 1 2 5 9 4 2 1 4 5 11 2 0 0 0 0 1 0 1.54208 +10 10 3 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 3 4 2 3 2 2 4 3 4 2 0 1 0 0 2 4 2 3 1 4 4 2 2 3 2 1 1 1 2 2 2 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 2 1 2 1 1 0 1 0 1 0 1 1 1 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 1 1 19 2 3 5 7 3 1 1 10 2 5 16 5 2 1 4 3 11 2 0 0 0 0 1 0 .76872 +6 -1 1 1 1 0 0 1 0 1 0 0 1 0 1 0 0 0 0 1 1 1 1 0 1 1 0 0 0 1 1 0 0 0 1 1 2 3 3 2 3 1 2 3 3 2 2 1 0 0 0 3 1 4 3 1 2 3 4 3 4 4 1 1 3 2 1 1 1 0 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 0 0 1 0 0 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 7 6 66 1 2 8 7 6 1 1 6 2 2 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.01546 +10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 5 3 5 2 4 3 4 4 4 1 0 0 0 4 4 6 6 6 6 6 6 6 6 6 1 1 6 4 6 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 2 2 4 1 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 29 3 4 11 7 1 1 1 10 2 2 2 3 2 3 1 4 2 1 1 0 0 1 0 0 1.54755 +10 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 3 3 4 2 3 3 3 2 2 1 0 0 0 3 4 2 3 1 5 3 3 3 4 4 2 1 2 3 4 1 0 1 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 3 3 3 3 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 28 4 5 1 7 1 1 4 6 1 1 16 4 2 1 4 1 -1 2 0 0 0 0 1 0 2.18858 +10 10 1 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 3 3 3 3 3 2 3 2 2 2 2 1 0 0 0 4 2 3 3 1 3 2 3 1 4 3 2 2 3 3 3 2 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 3 3 3 1 1 0 0 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 44 3 4 2 6 2 1 1 10 2 1 17 1 1 3 1 5 2 1 0 0 0 1 0 0 .57189 +10 1 5 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 4 1 4 5 3 4 3 4 2 2 1 0 0 0 3 4 4 5 1 5 1 5 1 4 4 2 1 1 4 4 1 0 0 1 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 2 3 3 3 1 1 0 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 53 3 4 4 7 1 1 1 1 1 4 11 5 2 3 1 5 3 1 0 0 1 1 0 0 1.60523 +4 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 4 4 2 3 3 3 3 3 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 5 3 5 1 1 3 3 3 3 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 3 1 4 4 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 60 4 5 7 6 2 1 1 4 1 7 7 1 1 4 2 2 -1 2 0 0 0 0 1 0 .57768 +10 10 2 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 3 3 3 3 3 3 4 4 3 1 0 0 0 4 4 3 3 3 3 3 3 3 3 5 1 1 2 3 2 3 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 3 3 3 1 1 0 0 1 0 0 0 1 0 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 3 3 41 2 3 2 6 2 1 1 10 2 1 9 1 1 4 2 3 11 2 0 0 0 0 1 0 .46998 +10 10 1 2 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 4 3 4 2 3 3 3 3 4 1 0 0 0 4 2 4 2 1 2 4 4 2 3 4 2 3 2 2 2 4 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 2 2 4 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 72 1 2 8 8 2 1 1 10 2 1 9 1 1 3 1 4 2 1 0 1 1 0 0 0 .76381 +1 -1 1 3 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 1 1 0 0 0 0 0 1 1 1 0 0 2 2 2 2 3 2 2 1 2 3 3 2 2 1 0 0 0 2 4 3 3 1 5 3 5 2 3 3 2 1 1 5 1 4 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 2 1 1 1 0 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 1 0 1 0 1 0 2 9 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 4 4 47 1 2 2 7 4 1 1 1 2 1 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.42681 +11 11 8 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 3 4 3 4 3 5 3 4 4 4 3 4 1 0 0 0 4 3 5 5 1 5 2 5 1 5 4 2 1 3 4 3 2 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 2 3 3 5 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 7 0 4 6 8 7 7 1 2 11 1 8 17 3 2 4 6 1 -1 2 0 0 0 0 1 0 1.94693 +1 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 3 4 4 5 2 4 4 4 4 4 1 0 0 0 4 4 4 5 1 5 5 4 2 4 2 2 1 5 4 2 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 1 1 4 2 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 38 4 5 1 5 1 1 1 1 2 1 17 2 1 1 4 2 11 2 0 0 0 0 1 0 1.90354 +10 10 3 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 4 2 4 2 4 4 4 3 3 1 0 0 0 3 2 2 3 2 4 3 3 2 3 2 2 2 3 2 2 2 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 5 5 56 3 4 1 5 1 1 1 10 1 1 17 3 2 4 2 2 -1 2 0 0 0 0 1 0 1.24739 +3 -1 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 2 2 3 3 2 3 4 1 2 3 3 3 3 1 0 0 0 2 2 4 4 1 5 4 3 2 3 4 1 1 2 5 4 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 4 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 7 7 80 4 5 8 5 7 1 1 3 2 8 6 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.925 +6 -1 4 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 0 1 1 0 1 1 1 1 0 0 2 2 1 2 2 2 4 1 1 2 2 1 2 1 0 0 0 2 3 2 4 2 1 2 2 2 4 4 1 1 2 2 2 2 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 1 1 2 1 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 68 3 4 8 7 6 1 1 6 1 8 6 2 1 4 2 2 -1 2 0 0 0 0 1 0 .85431 +1 -1 1 10 1 0 1 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 4 5 5 1 1 3 3 2 2 1 0 0 0 2 1 2 4 1 4 5 4 4 5 5 1 1 1 3 2 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 4 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 64 2 3 8 7 6 1 1 1 1 8 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 .76571 +10 1 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 1 1 0 1 1 1 0 0 2 2 2 3 4 4 4 2 2 3 2 3 2 1 0 0 0 3 1 1 1 5 2 5 2 5 2 2 4 5 3 2 1 2 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 2 3 1 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 9 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 4 4 47 2 3 1 10 5 1 1 1 1 1 17 2 1 3 1 4 2 1 0 1 1 0 0 0 1.56177 +10 3 1 3 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 2 1 3 3 3 2 1 3 2 3 2 2 1 0 0 0 3 3 2 3 2 2 4 2 4 4 3 2 3 3 1 2 2 1 0 1 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 5 5 5 3 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 1 1 1 1 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 29 2 3 1 2 3 1 1 3 2 1 11 4 2 3 1 3 1 1 1 0 0 0 0 0 1.16775 +10 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 2 3 2 3 1 2 3 3 4 4 1 0 0 0 3 3 4 2 2 3 3 3 2 2 3 1 2 3 2 2 2 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 2 2 2 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 65 1 2 8 2 4 1 1 1 1 8 9 2 1 4 4 1 -1 2 0 0 0 0 1 0 .62067 +10 6 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 3 4 4 4 4 4 4 4 4 1 1 1 0 0 0 4 4 5 4 1 5 1 5 1 4 5 1 1 1 5 5 1 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 5 1 5 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 65 4 5 2 11 2 1 1 6 1 2 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.00252 +10 6 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 3 3 3 4 3 5 5 2 2 3 3 4 4 1 0 0 0 3 4 5 5 1 5 1 5 5 5 3 1 5 1 1 1 1 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 5 1 1 5 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 4 4 46 4 5 1 11 1 1 1 6 1 1 4 4 2 3 1 5 3 1 0 1 0 1 0 0 1.60309 +2 -1 6 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 1 2 1 1 1 3 4 2 4 1 0 0 0 4 2 5 5 1 3 5 1 1 5 1 1 1 1 1 1 1 0 0 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 1 5 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 3 7 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 49 2 3 7 11 2 1 1 2 1 7 1 3 2 4 4 1 -1 2 0 0 0 0 1 0 .88378 +2 -1 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 1 1 0 1 0 0 1 0 0 2 2 2 3 2 3 3 1 2 2 3 1 1 1 0 0 0 1 3 1 5 2 5 5 2 1 5 3 1 1 1 2 1 1 0 1 1 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 2 1 4 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 5 5 55 2 3 2 11 4 1 1 2 1 2 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 .84566 +10 10 4 7 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 1 1 0 1 1 0 0 1 0 1 1 1 0 0 0 2 3 3 3 3 3 3 3 3 4 4 2 2 1 0 0 0 3 2 2 3 1 3 3 4 3 4 3 2 2 3 3 3 3 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 3 2 3 2 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 2 2 25 3 4 7 3 4 2 17 10 2 1 16 1 1 1 4 4 11 2 0 0 0 0 1 0 1.00536 +10 1 1 10 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 2 2 1 1 1 1 1 2 2 1 1 1 0 0 0 1 2 1 1 2 1 4 1 2 2 2 1 1 1 2 1 2 1 0 0 0 0 1 1 0 0 0 1 1 0 0 0 1 0 0 1 1 2 2 0 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 -1 9 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 1 1 0 1 1 0 1 1 1 1 3 3 35 2 3 1 3 4 2 9 1 1 1 16 4 2 2 2 2 -1 2 0 0 0 0 1 0 .56413 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 4 5 5 4 4 4 2 2 2 2 1 0 0 0 4 4 3 3 3 3 1 3 1 3 5 5 5 5 5 5 5 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 5 5 5 5 1 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 3 3 43 2 3 1 3 4 2 9 2 1 1 16 4 2 3 1 3 1 1 1 0 0 0 0 0 .47955 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 1 1 2 2 1 3 1 1 4 3 4 2 1 0 0 0 1 1 1 1 1 1 5 2 3 4 4 1 1 2 3 1 2 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 9 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 7 6 69 1 2 3 6 1 1 1 1 1 3 9 2 1 4 2 2 -1 2 0 0 0 0 1 0 .38656 +4 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 3 3 2 5 5 5 4 1 3 3 4 4 1 0 0 0 4 2 4 4 4 5 1 3 1 5 5 5 5 5 5 5 5 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 5 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 7 6 69 4 5 8 6 9 1 1 4 1 8 5 5 2 4 4 1 -1 2 0 0 0 0 1 0 .41383 +10 10 1 11 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 4 3 3 4 2 3 3 2 6 4 4 4 4 1 0 0 0 3 4 6 6 6 6 6 6 6 6 4 1 3 1 2 2 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 6 3 3 4 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 54 4 6 9 6 7 1 1 10 1 9 17 3 2 4 6 1 -1 2 0 0 0 0 1 0 .39304 +4 -1 1 5 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 4 3 3 4 4 4 4 5 5 4 4 4 4 1 0 0 0 3 4 5 6 6 6 6 6 6 6 4 2 4 4 3 2 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 3 4 4 4 0 1 0 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 -1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 48 4 5 11 6 2 1 1 4 2 1 10 2 1 4 2 2 -1 2 0 0 0 0 1 0 .474 +4 -1 1 3 1 0 1 1 0 1 0 1 0 0 1 0 0 0 0 1 1 1 1 0 1 0 0 0 0 1 0 1 0 0 2 2 3 4 2 4 5 1 4 2 4 2 2 1 0 0 0 2 2 5 6 6 5 5 5 2 1 4 1 1 1 4 4 2 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 4 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 7 6 67 3 4 8 6 2 1 1 4 1 8 7 2 1 4 6 1 -1 2 0 0 0 0 1 0 .48483 +10 10 5 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 4 5 6 6 6 6 6 5 5 5 5 0 0 0 1 3 4 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 6 6 6 6 0 0 0 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 -1 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 19 4 5 3 6 1 1 1 10 1 3 2 3 2 3 3 2 1 1 1 0 0 0 0 0 .51245 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 3 3 2 3 3 3 3 3 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 5 4 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 7 7 76 2 3 8 2 1 1 1 2 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.39751 +2 -1 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 2 4 3 3 3 3 3 3 3 3 1 0 0 0 3 3 4 3 2 3 2 4 2 3 3 3 2 2 4 3 3 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 7 84 4 5 8 10 6 1 1 2 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 .72513 +9 -1 9 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 2 3 3 4 3 4 3 3 3 3 1 0 0 0 3 4 3 3 3 3 3 3 3 3 3 2 3 2 2 2 3 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 3 2 3 1 0 0 0 0 0 0 1 1 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 28 1 2 1 10 4 1 1 -1 2 1 17 1 1 1 4 5 11 2 0 0 0 0 1 0 2.48503 +1 -1 1 3 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 2 2 2 2 2 2 5 1 2 3 3 2 2 1 0 0 0 3 2 4 5 1 3 1 4 2 4 5 1 1 1 1 5 5 1 0 0 1 0 1 0 0 0 1 0 1 1 0 0 0 0 0 1 1 1 1 1 1 0 1 1 0 0 1 1 1 1 1 1 0 1 1 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 44 1 1 1 2 5 1 1 1 1 1 15 1 1 4 2 4 11 2 0 0 0 0 1 0 2.58019 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 3 5 6 3 3 3 3 5 5 5 5 0 0 1 0 5 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 1 1 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 48 1 2 1 2 4 1 4 -1 1 1 17 4 2 3 1 4 2 1 0 0 1 1 0 0 1.81865 +2 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 3 2 2 2 4 1 4 4 4 4 4 1 0 0 0 2 4 2 2 2 2 5 2 6 2 2 1 1 2 4 4 4 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 1 1 0 1 0 0 0 1 1 1 1 0 0 1 1 1 0 0 0 1 0 0 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 2 2 25 2 3 5 5 4 2 10 2 1 5 16 4 2 1 4 2 11 2 0 0 0 0 1 0 .36861 +10 10 3 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 2 3 3 2 1 2 3 3 2 2 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 2 3 3 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 3 3 3 1 1 0 1 0 0 0 1 1 1 1 1 1 0 1 0 1 0 0 1 0 1 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 20 2 3 5 7 1 1 1 10 1 5 16 4 2 1 4 5 11 2 0 0 0 0 1 0 .65346 +5 -1 9 9 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 2 3 3 3 4 3 2 2 2 5 2 1 1 1 0 0 0 4 4 2 5 1 5 1 2 2 4 3 2 2 1 2 3 2 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 3 3 3 5 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 43 4 5 10 8 1 1 1 5 1 10 4 3 2 4 4 1 -1 2 0 0 0 0 1 0 .91682 +5 -1 1 3 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 1 1 1 1 1 1 0 0 0 0 1 0 1 0 0 2 2 2 3 2 4 3 1 1 1 2 3 3 1 0 0 0 3 1 3 3 2 2 3 2 1 2 3 1 1 1 2 1 2 0 1 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 5 3 5 1 1 1 0 0 0 0 0 1 1 1 1 0 1 0 0 1 1 0 1 0 0 0 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 57 1 2 7 8 5 1 4 5 1 7 1 4 2 4 6 1 -1 2 0 0 0 0 1 0 1.13536 +2 -1 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 4 3 2 3 2 2 2 3 4 4 4 4 1 0 0 0 2 2 2 2 3 2 3 2 2 3 2 2 2 2 2 3 3 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 3 3 3 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 60 2 3 10 5 7 2 10 2 1 10 16 1 1 4 2 4 11 2 0 0 0 0 1 0 .28165 +3 -1 1 10 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 1 1 3 2 2 2 1 2 2 3 3 3 1 0 0 0 2 1 2 3 3 3 4 1 4 2 3 1 1 2 2 2 4 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 2 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 1 1 1 0 0 0 0 0 1 7 6 67 3 4 8 5 1 1 1 3 1 8 16 4 2 4 6 1 -1 2 0 0 0 0 1 0 .678 +1 -1 1 10 0 0 1 1 1 1 1 0 0 0 1 1 1 0 0 1 1 0 1 1 1 1 1 1 1 1 1 1 0 0 1 2 2 3 2 4 4 1 1 3 3 2 1 1 0 0 0 2 1 3 3 2 2 5 2 3 5 4 2 3 2 3 4 3 0 1 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 2 2 1 1 0 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 2 9 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 4 4 50 2 3 1 3 4 1 1 1 1 1 17 1 1 3 7 3 1 1 0 0 1 0 0 0 1.15035 +10 10 4 4 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 0 0 0 3 3 3 2 2 2 2 2 3 4 4 3 3 1 0 0 0 4 4 2 3 3 3 3 3 3 3 3 1 2 4 2 3 2 0 0 1 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 3 4 3 2 1 1 0 1 0 0 0 1 1 1 1 0 0 0 1 1 0 0 0 1 0 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 19 1 2 5 6 8 1 1 10 2 1 4 1 1 3 4 5 1 1 0 0 0 1 0 0 .73194 +9 -1 10 10 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 2 2 4 5 4 5 3 5 4 4 3 2 1 0 0 0 4 4 3 5 2 5 3 3 3 5 4 1 1 1 3 3 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 3 5 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 19 2 3 5 8 3 1 1 -1 2 5 9 4 2 1 4 5 11 2 0 0 0 0 1 0 .56374 +11 10 1 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 2 3 3 2 2 3 2 2 2 3 3 3 1 0 0 0 2 4 3 3 2 3 3 3 2 3 2 2 2 2 2 2 2 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 2 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 61 2 3 2 8 1 2 9 10 2 1 17 2 1 3 2 5 1 1 1 0 0 0 0 0 .35747 +10 2 7 4 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 2 2 3 3 2 2 3 2 2 3 2 2 2 1 0 0 0 3 1 3 3 2 3 2 2 3 2 3 1 1 2 3 2 2 0 1 1 1 0 0 0 0 0 0 0 1 1 0 0 1 0 0 4 3 4 2 1 1 0 1 0 1 0 1 1 1 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 29 1 2 4 8 5 1 4 2 1 4 12 4 2 2 2 2 -1 2 0 0 0 0 1 0 1.04345 +10 2 6 6 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 1 1 1 0 1 0 1 0 0 1 0 0 0 3 2 2 3 3 4 4 2 3 3 4 4 4 1 0 0 0 3 1 2 4 2 4 3 2 4 3 3 1 1 1 2 1 1 1 0 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 4 4 2 2 1 0 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 1 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 3 3 42 1 2 1 6 5 1 1 2 2 1 13 1 1 3 1 3 1 1 0 0 0 1 0 0 1.02121 +8 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 3 3 3 3 3 3 3 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 2 1 1 1 4 3 2 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 2 2 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 1 0 0 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 2 2 28 4 5 2 3 4 2 10 8 1 2 10 4 2 1 4 5 11 2 0 0 0 0 1 0 .50526 +10 10 2 6 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 3 3 4 4 4 3 3 4 4 4 3 3 1 0 0 0 3 4 4 4 2 4 1 4 2 4 4 2 2 1 4 2 2 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 2 2 3 3 1 1 0 1 0 1 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 51 2 3 1 2 6 1 1 10 1 1 9 1 1 4 6 3 11 2 0 0 0 0 1 0 1.51835 +2 -1 6 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 3 3 3 4 4 4 4 1 4 4 4 3 3 1 0 0 0 3 4 4 3 6 6 6 6 6 6 4 1 1 2 3 2 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 2 1 2 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 32 3 4 1 3 5 2 10 2 1 1 9 4 2 3 1 3 1 1 1 0 0 0 0 0 .96659 +10 9 9 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 4 4 3 5 1 5 3 3 3 4 1 0 0 0 3 4 3 3 3 3 3 3 3 3 4 2 2 3 3 2 2 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 2 2 2 1 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 6 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 48 3 4 1 3 4 2 10 9 1 1 17 4 2 4 2 5 11 2 0 0 0 0 1 0 .67419 +2 -1 3 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 4 4 4 4 2 3 3 3 1 0 0 0 3 4 6 3 2 6 3 6 6 3 2 3 2 2 2 2 2 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 2 1 1 1 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 39 3 4 1 3 4 2 10 2 1 1 9 4 2 3 1 5 3 1 1 0 0 1 0 0 .68647 +9 -1 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 4 3 3 3 3 3 3 3 3 3 3 3 1 0 0 0 4 4 6 6 6 6 6 6 6 6 3 2 3 2 3 3 3 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 2 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 3 3 36 3 4 1 3 4 2 10 -1 1 1 9 4 2 3 1 4 2 1 0 0 1 1 0 0 .68647 +10 10 4 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 4 5 6 4 4 3 4 4 4 4 1 0 0 0 4 4 6 6 6 6 6 6 6 6 4 1 2 6 6 2 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 2 4 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 7 7 82 3 4 8 10 2 1 1 10 1 8 2 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.41406 +1 -1 2 3 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 2 2 2 2 2 2 4 1 2 2 3 2 2 1 0 0 0 2 1 1 2 1 1 3 4 4 3 3 2 1 4 4 2 1 1 0 0 1 0 1 0 0 0 1 0 0 1 0 1 0 0 0 1 1 1 4 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 1 1 1 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 43 1 2 1 10 4 1 1 1 1 1 13 1 1 3 1 3 1 1 0 0 0 1 0 0 1.63154 +10 2 1 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 1 0 1 1 1 1 1 1 0 1 0 0 2 2 3 4 3 3 4 1 4 4 4 2 2 1 0 0 0 1 4 4 4 1 4 1 5 1 5 5 1 1 1 5 1 1 0 0 1 1 0 1 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 3 5 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 7 75 3 4 8 10 2 1 1 2 1 8 2 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.01081 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 2 2 2 2 2 1 3 1 1 2 3 3 3 1 0 0 0 1 2 2 3 1 3 4 2 3 3 3 1 2 2 2 4 3 0 0 1 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 2 2 3 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 7 84 1 2 8 11 7 1 1 1 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 .82116 +2 -1 4 10 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 5 2 4 1 1 3 3 4 4 1 0 0 0 3 1 2 4 1 2 2 1 2 4 5 1 1 1 2 1 4 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 1 2 1 1 0 0 1 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 1 7 6 67 1 2 8 9 3 1 1 2 1 8 12 2 1 4 2 2 -1 2 0 0 0 0 1 0 .51452 +1 -1 1 1 0 0 0 0 1 1 1 0 0 0 1 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 2 3 3 2 4 4 3 2 3 2 4 2 2 1 0 0 0 3 1 3 3 3 3 4 2 5 2 2 1 2 3 3 3 3 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 3 3 3 2 1 0 0 0 0 0 0 1 1 1 1 0 1 1 1 1 0 0 1 0 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 31 2 3 1 11 3 1 1 1 1 1 12 1 1 2 2 2 -1 2 0 0 0 0 1 0 2.01591 +1 -1 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 2 2 2 2 4 4 1 2 3 4 3 3 1 0 0 0 4 1 4 5 1 4 1 1 1 5 5 1 1 1 2 1 1 0 1 0 1 0 1 0 0 0 0 1 0 1 0 1 0 0 0 1 1 5 1 1 1 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 63 2 3 8 9 3 1 1 1 1 8 4 2 1 4 4 1 -1 2 0 0 0 0 1 0 .38798 +10 4 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 3 3 3 2 4 3 3 1 3 4 4 4 4 1 0 0 0 4 4 6 6 6 6 6 6 6 3 4 1 1 2 3 3 5 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 58 3 4 10 9 7 1 1 4 2 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 .58408 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 3 3 3 4 2 2 1 2 4 4 4 4 1 0 0 0 1 2 3 5 1 4 1 2 2 5 4 1 1 1 3 2 1 0 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 1 1 2 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 61 4 5 10 9 7 1 1 2 1 10 16 5 2 3 6 3 1 1 0 0 1 0 0 0 .40297 +1 -1 2 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 3 3 3 4 5 2 4 2 1 3 4 2 2 1 0 0 0 3 2 3 4 1 5 4 2 4 3 5 3 3 1 5 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 1 1 2 1 1 0 1 0 1 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 37 2 3 1 9 3 1 1 1 1 1 17 1 1 3 1 4 2 1 0 0 0 1 0 0 1.03407 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 3 4 4 5 5 5 5 5 4 4 3 4 1 0 0 0 3 4 5 5 1 5 1 1 1 5 5 1 1 1 5 1 1 0 0 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 65 2 3 1 9 7 1 1 2 1 1 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .60007 +1 -1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 2 2 2 3 4 2 2 1 2 4 4 2 2 1 0 0 0 4 1 4 5 1 5 2 2 1 5 2 1 1 1 1 1 2 0 0 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 2 1 1 1 1 1 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 66 3 4 1 9 4 1 1 1 1 1 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 .89753 +2 -1 1 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 3 4 4 2 3 4 4 3 3 3 3 3 1 0 0 0 3 4 3 3 3 3 3 3 3 3 4 1 1 2 3 2 1 1 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 2 1 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 7 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 74 4 6 8 11 7 1 1 2 2 8 16 4 2 4 2 3 11 2 0 0 0 0 1 0 .83128 +2 -1 1 1 0 0 0 1 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 1 1 0 0 0 0 1 1 1 4 3 3 4 2 4 3 2 2 2 1 0 0 0 1 4 3 3 3 3 3 3 3 3 4 1 2 3 1 1 4 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 2 2 3 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 55 2 3 1 11 5 1 1 2 1 1 10 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.00535 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 4 4 3 3 5 3 3 3 4 3 3 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 1 1 1 2 2 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 2 4 2 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 4 4 48 3 4 1 11 7 1 1 -1 1 1 10 1 1 4 2 2 -1 2 0 0 0 0 1 0 2.01281 +2 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 1 1 0 0 0 0 1 0 1 0 0 1 2 2 2 2 2 2 2 2 3 3 1 1 0 0 1 0 1 1 2 4 2 2 2 2 2 2 4 2 2 2 4 4 2 0 1 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 2 1 1 1 1 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 1 0 2 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 -1 -1 0 0 0 0 0 1 1 1 1 3 3 39 3 4 7 9 4 2 17 2 2 2 17 1 1 2 2 4 11 2 0 0 0 0 1 0 .37565 +5 -1 2 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 4 3 3 2 2 3 3 3 3 0 1 0 0 2 4 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 3 3 3 4 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 1 0 0 0 0 1 1 1 0 0 2 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 22 4 5 1 8 4 1 1 5 1 1 17 4 2 1 4 3 11 2 0 0 0 0 1 0 1.47541 +9 -1 11 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 4 4 3 3 3 3 3 3 3 3 3 5 0 0 1 0 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 0 2 3 11 8 3 2 7 -1 2 1 17 7 -1 3 1 4 2 1 1 0 0 0 0 0 .35167 +10 10 3 11 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 3 5 3 5 6 6 6 6 6 5 5 5 5 0 1 0 0 3 4 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 3 3 3 3 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 21 2 3 5 8 3 1 1 10 1 5 17 4 2 1 4 5 11 2 0 0 0 0 1 0 .47921 +11 11 3 3 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 1 1 0 0 0 2 2 2 3 5 4 5 1 2 4 4 2 2 1 0 0 0 4 1 2 3 2 2 2 2 1 4 4 1 1 2 3 2 3 0 1 0 1 0 1 0 0 0 0 1 0 1 0 1 0 0 0 1 1 1 5 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 1 0 0 1 1 1 0 0 0 0 2 9 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 1 1 0 1 1 1 3 3 43 1 1 1 7 5 1 1 11 1 1 17 4 2 3 1 3 1 1 0 0 0 1 0 0 2.68239 +2 -1 2 5 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 2 2 3 3 4 4 1 1 3 3 2 2 1 0 0 0 4 2 2 4 1 4 2 5 2 4 3 2 1 2 2 2 2 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 1 1 1 2 1 1 0 1 0 0 0 1 1 1 1 1 1 0 1 1 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 4 4 46 1 1 1 7 5 1 1 2 1 1 13 1 1 3 1 4 2 1 0 0 1 0 0 0 2.46972 +2 -1 2 7 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 3 1 2 3 3 3 3 3 3 2 3 1 0 0 0 3 4 2 3 3 4 2 4 2 4 3 2 3 2 3 3 2 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 65 3 4 8 11 7 2 10 2 1 8 6 1 1 4 2 5 11 2 0 0 0 0 1 0 .35751 +1 -1 4 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 3 2 2 2 2 2 2 3 3 2 2 0 0 1 0 4 4 2 2 2 5 2 2 2 3 3 2 2 2 2 2 2 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 2 2 2 2 1 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 8 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 26 3 4 11 11 4 2 10 1 2 1 16 1 1 2 2 5 11 2 0 0 0 0 1 0 .5443 +8 -1 1 4 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 3 2 4 3 4 2 2 2 2 3 1 0 0 0 3 2 2 2 2 4 2 3 1 4 4 2 2 2 3 4 3 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 2 2 2 2 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 35 1 2 9 11 4 2 10 8 2 1 10 1 1 3 1 5 3 1 1 0 0 1 0 0 .59273 +1 -1 1 10 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 4 2 1 1 1 1 2 2 1 1 1 0 0 0 1 2 2 1 2 2 4 2 4 3 2 2 2 2 1 4 5 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 2 1 1 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 50 2 3 1 11 7 2 10 1 1 1 9 1 1 3 1 5 1 1 0 0 0 1 0 0 .58864 +1 -1 2 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 1 4 4 4 2 1 2 3 3 2 2 1 0 0 0 2 2 4 5 2 2 2 2 4 4 5 1 1 1 5 2 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 2 4 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 9 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 4 4 52 3 4 11 3 7 1 2 1 2 1 17 1 1 4 4 1 -1 2 0 0 0 0 1 0 1.09615 +10 1 5 6 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 2 3 3 3 3 3 4 3 2 3 3 2 2 1 0 0 0 2 4 3 3 3 3 3 3 3 3 2 1 1 2 3 2 2 1 0 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 8 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 7 75 2 3 8 4 1 1 1 1 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.82071 +3 -1 1 1 1 0 1 0 1 1 1 1 1 0 0 0 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 2 2 3 5 3 2 2 2 4 4 2 2 1 0 0 0 1 3 3 3 1 3 1 3 2 4 4 1 1 2 1 5 4 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 3 4 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 6 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 4 4 52 2 3 1 4 3 1 1 3 2 1 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.92861 +3 -1 1 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 0 0 0 0 1 0 0 2 3 3 3 3 3 3 2 3 3 3 3 4 1 0 0 0 3 4 3 3 3 3 3 3 3 3 4 1 4 2 2 2 2 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 2 2 1 1 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 67 1 2 8 5 4 1 1 3 1 8 7 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.00973 +2 -1 1 1 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 3 3 2 4 1 2 4 3 2 2 1 0 0 0 2 3 4 4 2 5 4 4 1 4 3 4 2 4 3 1 3 1 0 0 1 0 1 0 0 0 1 0 0 1 0 1 0 0 0 4 4 5 1 1 0 1 1 1 0 0 1 1 1 1 0 1 0 1 1 0 0 1 1 0 1 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 46 2 3 1 5 5 1 1 2 1 1 14 1 1 4 4 1 -1 2 0 0 0 0 1 0 1.45389 +11 11 1 7 0 0 0 0 1 1 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 2 2 1 2 3 3 1 3 3 3 3 3 1 0 0 0 2 4 2 2 3 2 3 3 2 4 2 2 3 3 2 2 3 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 3 2 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 1 1 2 7 7 80 4 5 8 5 7 1 1 11 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.63637 +11 2 4 10 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 2 2 3 4 3 1 3 4 4 2 2 1 0 0 0 1 1 1 5 1 3 1 2 1 4 4 2 1 2 3 2 2 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 2 4 1 4 1 0 0 0 0 0 0 1 1 1 1 0 1 1 1 1 0 0 1 1 1 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 47 3 4 4 5 1 1 1 2 1 4 17 4 2 4 4 1 -1 2 0 0 0 0 1 0 .8414 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 1 2 4 3 3 3 4 3 3 3 3 3 1 0 0 0 4 3 3 3 3 3 2 2 4 2 2 2 3 2 2 2 2 0 1 0 1 0 1 0 0 0 0 1 0 1 0 1 0 0 0 3 3 3 3 1 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 1 1 0 1 0 0 0 2 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 41 1 1 8 5 6 2 8 -1 2 10 16 4 2 4 2 3 11 2 0 0 0 0 1 0 .36459 +9 -1 10 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 4 4 2 2 3 2 3 2 3 4 4 1 0 0 0 4 2 3 2 2 2 3 2 2 2 4 2 2 2 2 2 2 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 3 4 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 89 4 5 8 5 7 2 15 -1 1 8 16 3 2 4 6 1 -1 2 0 0 0 0 1 0 .34253 +4 -1 1 6 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 1 0 0 1 1 0 0 0 2 2 2 3 2 4 4 2 2 2 3 3 3 1 0 0 0 2 2 3 4 2 4 2 3 3 4 4 2 3 3 3 2 2 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 2 2 2 1 1 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 3 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 50 1 2 1 6 4 1 1 4 1 1 11 1 1 4 6 1 -1 2 0 0 0 0 1 0 .68089 +8 -1 7 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 2 1 3 3 3 2 3 2 3 3 3 1 0 0 0 3 2 3 3 3 2 3 3 3 3 3 3 3 3 3 3 2 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 3 3 2 2 1 1 1 1 0 0 0 1 1 1 1 0 1 1 0 0 1 0 0 1 0 0 1 1 0 3 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 37 1 2 1 6 4 2 16 8 1 1 9 3 2 3 1 3 1 1 0 0 1 0 0 0 .34297 +9 -1 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 5 5 5 4 5 3 3 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 5 1 5 2 5 5 1 1 0 1 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 2 4 5 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 6 5 64 4 6 8 6 7 1 1 -1 1 8 6 4 2 4 4 1 -1 2 0 0 0 0 1 0 .44401 +1 -1 1 1 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 2 2 3 3 5 3 2 2 2 3 2 1 1 0 0 0 3 1 2 4 2 4 2 1 2 4 4 1 1 1 3 2 2 0 1 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 4 1 1 1 1 0 0 1 1 0 0 1 1 1 0 0 1 0 1 0 0 1 0 1 0 0 0 1 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 70 1 2 8 6 4 1 1 1 1 8 7 3 2 4 4 1 -1 2 0 0 0 0 1 0 .30443 +4 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 2 4 1 3 5 5 5 4 4 4 4 1 0 0 0 1 1 4 5 1 2 3 5 1 5 4 1 1 3 3 1 1 1 1 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 1 1 5 1 1 1 1 1 1 0 1 1 1 1 0 1 1 1 1 0 0 0 1 0 1 1 1 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 52 1 2 4 6 4 1 1 4 1 4 17 1 1 4 2 2 -1 2 0 0 0 0 1 0 .57884 +4 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 3 3 4 4 3 3 3 3 3 4 4 4 4 1 0 0 0 3 4 3 3 3 3 3 3 3 3 3 1 3 1 3 5 1 0 0 1 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 5 1 1 2 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 56 4 6 7 6 2 1 1 4 1 7 17 3 2 3 3 2 1 1 1 0 0 0 0 0 .37995 +2 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 4 4 3 2 1 5 4 4 4 4 1 0 0 0 3 4 3 3 3 3 3 3 3 3 2 1 1 1 1 2 2 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 1 1 1 1 0 0 1 0 0 0 1 1 0 0 1 1 0 0 0 1 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 28 4 6 7 6 5 2 9 2 2 1 9 4 2 2 2 2 -1 2 0 0 0 0 1 0 .2272 +10 2 2 8 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 2 3 3 3 4 2 2 2 2 2 3 3 3 1 0 0 0 3 4 2 5 1 4 2 4 2 5 4 1 2 1 2 2 2 0 0 0 1 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 1 2 1 1 1 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 3 3 40 2 3 1 1 4 1 1 2 1 1 13 1 1 4 2 2 -1 2 0 0 0 0 1 0 3.40548 +2 -1 1 11 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 0 0 1 1 1 1 0 0 2 3 3 4 5 6 4 2 2 4 4 3 1 1 0 0 0 2 3 1 5 2 5 1 5 4 5 4 1 1 6 1 1 1 0 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 1 1 1 2 1 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 1 0 0 0 2 6 3 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 2 2 32 4 6 11 5 1 1 1 2 1 11 8 3 2 3 1 5 3 1 1 0 1 1 0 0 1.07896 +10 1 1 11 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 1 1 1 1 0 0 3 3 3 3 4 3 3 2 2 3 3 2 2 1 0 0 0 3 3 2 5 2 4 2 3 2 4 4 1 2 2 2 2 1 0 1 0 1 0 1 0 0 0 0 1 0 1 0 1 0 0 0 2 1 4 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 1 0 0 0 1 0 1 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 51 1 2 2 5 4 1 1 1 1 2 11 4 2 4 2 2 -1 2 0 0 0 0 1 0 1.13234 +10 6 11 10 1 0 1 1 0 1 1 0 0 0 0 0 0 0 0 1 1 1 1 0 0 1 1 0 0 1 0 0 0 0 2 2 2 3 4 4 5 1 4 2 3 2 3 1 0 0 0 4 2 1 4 1 2 5 1 5 5 5 2 2 5 1 1 4 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 73 4 5 8 8 1 1 1 6 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .64987 +2 -1 2 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 1 0 0 0 0 1 0 0 0 0 3 3 2 2 3 4 3 2 2 3 4 2 3 1 0 0 0 4 2 2 3 1 3 4 2 5 4 3 1 1 1 2 1 2 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 1 7 7 80 1 2 8 1 4 1 1 2 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.95325 +1 -1 6 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 2 3 3 3 2 2 2 2 2 3 4 4 4 1 0 0 0 3 2 3 5 2 4 1 4 1 5 3 1 1 1 2 3 1 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 1 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 7 9 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 7 6 74 3 4 8 6 3 1 1 1 2 8 6 3 2 4 2 3 11 2 0 0 0 0 1 0 .57686 +9 -1 10 10 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 4 2 4 4 1 5 5 3 4 4 4 1 1 1 0 0 0 4 4 6 6 6 6 6 6 6 6 5 1 1 1 5 4 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 5 5 3 5 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 57 1 2 1 9 5 1 1 -1 2 1 13 2 1 3 1 3 1 1 1 0 0 0 0 0 1.02398 +10 10 6 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 4 4 4 4 5 6 5 6 5 4 4 2 2 1 0 0 0 4 4 4 5 1 5 1 2 2 5 5 1 5 1 5 5 1 0 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 1 0 0 0 0 1 0 0 1 1 0 2 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 54 4 6 10 6 2 1 1 10 2 9 3 5 2 4 2 2 -1 2 0 0 0 0 1 0 .46236 +4 -1 1 10 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 2 2 4 4 5 4 1 4 3 4 2 2 0 1 0 0 1 2 5 4 1 4 1 5 2 4 4 2 1 2 3 3 2 0 0 1 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 2 1 2 1 1 1 1 0 0 0 1 1 1 1 1 1 1 0 0 0 0 0 1 1 1 1 1 0 2 9 2 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 1 0 0 0 1 1 1 1 1 1 2 2 34 3 4 1 6 6 1 1 4 1 1 11 5 2 3 1 4 2 1 1 1 0 0 0 0 .94485 +4 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 2 2 4 4 5 4 1 2 4 4 2 2 1 0 0 0 3 4 4 5 4 5 4 4 5 5 4 1 4 3 2 2 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 2 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 7 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 72 4 5 8 9 1 1 1 4 1 8 5 2 1 4 4 1 -1 2 0 0 0 0 1 0 .44902 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 4 4 4 4 5 6 6 3 6 4 4 1 3 1 0 0 0 4 4 6 6 6 6 6 6 6 6 4 1 2 1 4 3 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 2 3 3 5 1 0 0 1 0 0 0 1 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 37 4 6 11 9 7 1 1 -1 1 11 17 4 2 3 1 5 4 1 0 0 1 1 0 0 .75093 +4 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 3 3 4 3 4 5 3 3 3 3 3 4 1 0 0 0 4 4 6 6 1 5 2 6 2 5 1 1 1 1 2 2 1 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 5 5 58 4 6 10 9 7 1 1 4 1 10 2 4 2 4 6 1 -1 2 0 0 0 0 1 0 .40608 +10 9 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 2 2 3 4 4 4 2 2 2 3 4 4 0 0 1 0 4 1 1 4 1 2 4 2 5 5 5 1 1 2 4 2 2 0 1 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 2 1 4 5 1 1 0 1 0 1 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 1 1 21 3 4 1 5 3 1 1 9 2 1 15 2 1 1 4 4 11 2 0 0 0 0 1 0 1.64272 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 4 4 5 5 2 1 4 4 2 2 1 0 0 0 4 1 5 5 1 2 4 2 1 5 5 1 1 3 3 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 5 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 -1 -1 0 0 0 0 0 1 1 1 1 7 6 69 2 3 8 5 3 1 1 -1 1 8 16 2 1 4 2 3 11 2 0 0 0 0 1 0 .57559 +6 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 3 2 3 2 2 4 4 2 4 2 3 2 3 1 0 0 0 3 1 3 4 1 3 2 3 2 4 4 1 2 1 3 2 2 1 0 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 1 1 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 7 6 68 3 4 8 5 1 1 1 6 1 8 9 2 1 4 2 2 -1 2 0 0 0 0 1 0 .70042 +1 -1 1 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 2 2 1 2 1 1 2 2 4 4 1 0 0 0 2 2 2 4 2 4 4 2 1 5 6 1 2 4 2 2 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 2 3 3 4 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 0 1 0 1 0 0 0 2 9 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 7 6 73 1 1 8 2 7 1 1 1 1 8 10 2 1 4 2 2 -1 2 0 0 0 0 1 0 .73458 +10 10 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 2 3 3 3 3 3 1 0 0 0 4 4 3 3 6 4 2 3 3 3 3 2 6 3 3 6 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 2 2 2 4 1 0 0 0 0 0 0 1 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 3 3 37 2 3 1 2 2 1 1 10 1 1 17 3 2 3 3 3 2 1 1 0 1 0 0 0 1.11786 +10 10 6 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 1 0 1 0 0 3 3 3 4 5 2 3 2 2 4 4 2 4 1 0 0 0 4 2 3 5 2 5 1 3 3 4 4 1 1 1 3 2 1 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 4 3 2 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 45 1 2 9 8 3 1 4 10 1 9 13 2 1 3 1 5 1 1 0 0 0 1 0 0 1.17601 +3 -1 2 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 1 1 1 3 5 5 4 1 1 3 3 4 4 1 0 0 0 2 1 1 5 1 4 1 1 1 5 5 1 1 1 5 1 1 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 4 4 3 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 0 0 1 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 67 1 2 8 8 3 1 1 3 1 8 11 4 2 4 2 3 11 2 0 0 0 0 1 0 .72085 +2 -1 1 1 1 0 1 1 1 1 1 0 0 0 1 1 1 0 0 0 1 1 1 1 1 1 1 0 1 1 1 1 0 0 1 1 1 3 4 4 4 1 1 2 3 2 2 1 0 0 0 2 2 4 2 1 4 3 4 1 2 2 1 1 2 3 1 1 0 0 0 1 0 1 1 0 0 1 0 0 1 0 1 0 0 0 2 4 3 1 1 0 1 1 0 0 0 1 1 1 1 0 1 0 1 0 1 0 0 1 0 1 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 42 1 1 2 8 4 1 1 2 2 1 14 1 1 3 1 5 3 1 0 0 1 1 0 0 1.54985 +1 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 3 4 2 2 2 4 4 2 2 3 3 3 1 0 0 0 3 2 2 5 2 2 2 2 2 4 4 1 2 3 2 4 2 0 1 0 1 1 0 0 0 0 1 0 0 1 1 0 0 0 0 2 2 2 4 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 71 2 3 8 7 3 1 1 1 1 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.04662 +2 -1 6 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 2 2 3 4 4 4 2 2 3 3 2 2 1 0 0 0 2 2 2 4 1 4 3 2 3 4 4 1 1 3 2 3 1 0 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 3 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 1 0 0 3 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 2 2 34 3 4 1 5 3 1 2 2 1 1 9 2 1 3 3 5 1 1 0 0 1 0 0 0 1.60195 +2 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 3 3 3 2 3 3 3 4 3 3 3 2 3 1 0 0 0 3 2 1 4 1 3 3 1 3 3 4 1 2 1 4 1 1 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 3 3 1 1 0 0 1 0 0 0 1 1 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 26 4 6 7 5 6 2 5 2 1 7 6 4 2 3 5 3 2 1 1 0 1 0 0 0 .48932 +2 -1 1 6 1 0 0 1 1 0 0 0 0 0 1 1 0 0 0 1 0 0 1 1 0 0 0 0 0 1 1 0 0 0 2 2 2 3 1 1 2 1 1 2 3 2 2 1 0 0 0 2 3 2 4 1 3 4 2 1 3 2 1 3 1 1 1 3 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 1 3 1 0 0 0 0 0 0 1 1 1 1 0 0 1 0 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 67 2 3 8 5 7 1 1 2 1 8 16 1 1 4 2 3 11 2 0 0 0 0 1 0 .59037 +2 -1 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 3 3 3 3 3 2 4 4 3 3 0 0 0 1 3 4 6 6 6 6 6 6 6 6 3 2 3 2 4 3 2 0 1 0 0 1 1 0 0 0 1 1 0 1 0 0 0 0 0 2 3 3 4 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 0 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 18 1 2 2 4 3 1 1 2 2 1 16 2 1 1 4 4 11 2 0 0 0 0 1 0 1.21615 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 1 1 1 1 1 0 0 0 2 2 2 2 2 2 3 2 3 2 2 2 2 2 2 2 2 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 2 2 2 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 7 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 38 2 3 11 3 4 2 17 1 2 1 12 1 1 3 1 4 2 1 1 1 0 0 0 0 .48079 +2 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 3 2 2 3 1 1 3 3 3 3 1 0 0 0 3 4 1 2 2 2 3 2 2 4 2 1 2 2 2 2 3 1 0 0 0 1 1 0 0 0 1 0 1 0 0 0 0 0 0 2 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 54 1 2 1 3 5 1 1 2 1 1 12 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.81133 +10 2 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 3 2 2 2 1 2 3 3 3 3 1 0 0 0 3 4 4 4 1 5 2 4 2 4 2 1 1 2 4 3 2 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 1 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 64 4 6 7 3 4 2 15 2 1 7 7 1 1 4 4 2 11 2 0 0 0 0 1 0 .48449 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 3 3 3 3 3 2 2 2 2 1 0 0 0 4 4 6 6 6 6 6 6 6 6 6 2 2 2 2 6 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 6 6 6 6 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 7 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 33 4 5 1 3 4 1 4 -1 2 1 9 4 2 3 1 3 1 1 0 1 0 0 0 0 1.74674 +10 2 8 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 2 4 2 2 2 2 2 2 2 2 2 1 0 0 0 3 3 2 2 3 4 3 3 2 4 3 2 2 2 2 3 2 1 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 2 2 2 3 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 29 3 4 11 3 1 2 5 2 2 1 3 4 2 3 1 4 2 1 1 0 1 0 0 0 .41679 +1 -1 1 2 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 2 2 2 2 4 1 2 3 4 2 2 1 0 0 0 2 2 3 4 2 3 4 2 4 4 5 2 1 1 2 4 2 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 4 4 1 1 1 0 0 1 0 0 0 1 1 1 1 1 1 0 1 1 0 0 0 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 1 4 4 45 2 3 1 8 3 1 1 1 1 1 15 1 1 3 1 4 2 1 0 0 1 1 0 0 1.5985 +10 10 7 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 4 4 2 4 3 2 3 3 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 2 2 2 2 3 4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 3 3 3 4 1 0 0 0 0 0 0 1 1 1 1 0 1 1 1 0 0 0 1 1 1 1 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 21 2 3 1 8 1 1 1 10 2 1 16 7 -1 1 4 3 11 2 0 0 0 0 1 0 1.33974 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 4 2 3 1 1 4 2 2 4 1 0 0 0 3 2 2 2 1 5 4 2 4 3 1 1 1 1 1 1 2 0 1 1 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 2 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 9 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 84 4 6 8 5 1 1 1 1 1 8 7 2 1 4 2 2 -1 2 0 0 0 0 1 0 .95898 +6 -1 1 1 1 0 1 1 0 1 1 0 0 0 1 0 1 0 0 1 0 1 1 1 1 1 1 1 0 1 0 1 0 0 1 1 1 2 1 2 2 1 1 2 2 2 2 1 0 0 0 2 2 1 5 1 1 4 1 1 5 5 1 1 1 2 2 1 0 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 2 2 3 1 1 1 0 1 0 0 0 1 1 1 1 1 1 1 1 0 0 0 1 1 0 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 43 2 3 1 5 4 1 1 6 1 1 13 1 1 3 1 3 1 1 0 0 1 0 0 0 1.52057 +1 -1 1 10 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 3 3 2 3 2 2 1 2 2 2 2 3 1 0 0 0 2 1 2 3 2 2 5 2 4 2 2 2 3 2 2 1 3 1 0 0 1 0 1 0 0 0 0 1 0 0 0 1 1 0 0 1 1 4 1 1 1 0 1 0 0 0 1 1 1 1 1 1 0 0 1 1 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 43 2 3 2 7 4 1 1 1 2 1 12 1 1 3 1 4 2 1 0 0 1 1 0 0 1.5175 +2 -1 1 8 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 1 1 1 1 1 1 0 0 1 1 0 1 0 0 3 3 3 3 4 4 4 3 3 3 4 3 4 1 0 0 0 1 2 3 5 2 5 2 3 2 4 5 4 4 2 2 2 2 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 2 2 2 2 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 2 9 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 61 1 2 8 5 4 1 1 2 1 8 2 2 1 4 4 1 -1 2 0 0 0 0 1 0 1.07511 +10 10 1 1 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 0 1 0 0 0 1 0 0 0 0 3 2 2 3 2 2 4 1 1 3 3 2 2 1 0 0 0 4 2 4 4 1 4 4 4 1 5 4 1 1 1 4 2 2 0 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 5 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 1 0 1 0 0 0 0 0 2 7 6 72 1 2 11 2 4 1 1 10 2 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .92528 +9 -1 9 9 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 1 1 1 0 0 4 3 3 2 2 2 4 2 2 4 4 3 3 1 0 0 0 4 4 6 4 2 4 2 6 6 6 4 2 4 2 2 6 4 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 2 4 4 1 0 0 0 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 0 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 37 1 2 3 2 5 1 1 -1 2 1 17 1 1 3 1 4 1 1 1 0 0 0 0 0 1.09145 +2 -1 3 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 5 4 6 6 6 6 4 4 4 4 1 0 0 0 4 4 6 6 6 6 6 6 6 6 6 2 6 6 6 6 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 6 6 6 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 41 4 5 1 3 7 2 11 2 1 1 16 3 2 3 1 5 3 1 1 1 0 1 0 0 .60531 +2 -1 3 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 5 2 4 2 2 2 4 4 4 4 1 0 0 0 4 4 6 6 6 6 6 6 6 6 6 2 2 2 6 2 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 2 2 2 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 8 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 3 3 39 3 4 11 3 7 1 4 2 2 1 16 4 2 3 1 4 1 1 0 0 0 1 0 0 1.07303 +2 -1 4 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 2 2 2 4 6 2 4 4 4 4 4 1 0 0 0 4 4 6 6 6 6 6 6 6 6 6 6 6 2 6 6 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 6 4 2 2 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 41 3 4 2 3 2 2 14 2 2 2 17 7 -1 3 1 5 3 1 0 1 0 1 0 0 .58505 +10 5 1 1 1 0 1 1 1 1 1 1 0 0 1 0 0 0 0 1 1 1 1 1 1 1 1 0 0 1 0 1 0 0 3 2 2 2 4 2 2 1 1 3 3 2 4 1 0 0 0 4 2 1 4 1 4 2 1 2 4 4 1 1 2 3 1 4 0 1 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 64 1 1 8 8 5 1 1 5 2 8 10 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.39897 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 5 2 2 3 2 3 2 4 2 4 1 0 0 0 4 2 2 4 1 4 1 2 3 3 3 2 1 1 4 1 1 1 0 0 1 0 1 0 0 0 1 0 1 0 1 0 0 0 0 3 2 3 5 1 0 0 0 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 1 1 1 0 0 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 3 3 44 2 3 1 8 3 1 1 -1 1 1 9 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.38357 +9 -1 10 9 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 3 3 3 4 2 4 3 4 4 3 4 2 2 1 0 0 0 4 4 3 3 3 3 3 3 3 3 4 1 2 1 4 2 1 0 0 0 0 1 1 1 0 0 0 1 0 0 0 0 0 0 0 1 2 1 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 68 1 2 8 8 3 1 1 -1 1 8 9 2 1 4 2 2 -1 2 0 0 0 0 1 0 .90319 +2 -1 1 8 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 1 1 1 1 1 1 0 0 0 0 2 3 2 4 1 4 4 1 2 3 4 2 2 1 0 0 0 2 1 4 4 1 4 1 4 1 4 4 1 1 1 1 4 1 0 1 0 1 0 1 0 0 0 0 1 0 1 0 1 0 0 0 1 1 2 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 7 84 3 4 8 8 6 1 1 2 1 8 3 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.65996 +2 -1 4 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 3 3 2 2 2 4 4 4 4 3 2 1 1 0 0 0 2 2 2 2 2 2 2 3 1 4 2 1 1 1 4 4 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 3 3 1 1 0 0 0 0 0 0 1 1 0 1 0 0 0 1 1 0 0 0 1 0 0 0 0 0 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 2 2 30 1 2 1 3 5 2 14 2 2 1 16 1 1 1 4 4 11 2 0 0 0 0 1 0 .99041 +2 -1 5 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 2 2 2 3 2 2 2 2 3 3 2 2 1 0 0 0 3 2 2 3 2 2 2 2 2 2 2 3 3 2 2 2 2 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 1 1 0 1 1 0 1 1 1 2 3 3 35 1 2 5 3 3 2 14 2 2 1 12 1 1 3 1 5 3 1 0 1 1 1 0 0 .56576 +10 6 4 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 2 5 4 4 2 4 4 4 4 4 1 0 0 0 3 1 3 5 1 1 2 2 5 5 5 1 2 1 4 2 1 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 5 5 4 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 45 4 6 10 8 7 1 1 6 1 10 16 3 2 4 2 4 11 2 0 0 0 0 1 0 1.13754 +10 3 2 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 3 3 3 3 5 3 2 2 2 2 3 3 3 1 0 0 0 3 1 4 5 1 4 4 2 1 2 3 1 1 1 3 1 1 0 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 5 1 1 3 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 61 4 5 1 8 1 1 1 3 1 1 16 3 2 4 4 2 11 2 0 0 0 0 1 0 1.50008 +1 -1 3 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 4 3 3 2 3 3 3 4 4 1 0 0 0 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 1 1 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 5 5 56 4 5 11 8 7 1 1 1 2 8 16 3 2 4 2 2 -1 2 0 0 0 0 1 0 .99853 +10 2 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 3 3 4 3 4 3 3 2 3 2 3 1 0 0 0 3 3 2 4 2 4 3 3 3 4 4 2 2 2 2 3 2 0 0 1 0 1 1 0 0 0 0 1 1 0 0 0 1 0 0 2 2 3 3 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 2 2 30 4 5 2 8 3 1 1 2 2 1 16 1 1 3 1 5 3 1 1 1 1 0 0 0 1.01481 +3 -1 1 6 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 1 1 0 0 0 1 0 1 0 0 1 2 2 3 2 3 4 3 3 2 3 3 3 1 0 0 0 2 2 2 3 2 4 3 2 3 3 4 1 3 3 2 1 2 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 3 2 1 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 67 4 6 8 7 4 1 1 3 1 8 6 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.33127 +2 -1 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 3 4 2 2 2 4 4 4 2 2 1 0 0 0 4 2 2 3 1 4 4 3 5 2 4 2 5 1 2 2 4 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 2 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 75 2 3 8 6 4 1 1 2 1 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 .35007 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 2 2 2 2 2 1 1 1 1 2 2 2 3 1 0 0 0 1 2 3 3 3 4 5 1 5 2 5 1 1 1 1 1 5 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 5 1 5 1 1 0 0 1 0 0 0 1 1 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 6 5 63 3 4 8 6 3 1 1 2 1 8 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 .30152 +4 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 3 2 4 4 1 4 3 3 3 3 1 0 0 0 3 1 2 4 1 4 4 2 1 5 2 1 1 2 2 2 2 0 1 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 1 1 1 2 7 7 77 2 3 8 6 2 1 1 4 2 8 9 2 1 4 2 2 -1 2 0 0 0 0 1 0 .70812 +10 11 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 1 0 0 1 0 1 0 0 3 2 2 4 4 3 2 1 1 2 4 1 1 1 0 0 0 4 2 5 5 1 5 2 5 2 5 4 1 1 1 2 4 4 0 1 1 1 0 0 0 0 0 0 1 0 1 0 1 0 0 0 2 2 2 1 1 1 0 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 52 2 3 1 6 1 1 1 11 1 1 11 1 1 3 3 3 1 1 0 1 0 0 0 0 .57863 +10 10 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 3 4 3 6 6 3 2 4 3 3 1 0 0 0 4 1 5 5 1 2 6 1 1 5 5 1 1 1 5 1 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 1 6 5 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 69 2 3 8 1 7 1 1 10 2 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.88919 +10 10 3 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 2 2 2 2 2 3 1 1 2 2 4 2 4 1 0 0 0 4 2 3 3 1 5 4 5 4 5 5 1 5 1 5 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 67 2 3 8 1 7 1 1 10 2 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 2.32212 +1 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 2 3 2 4 4 4 3 2 3 3 3 4 1 0 0 0 4 4 3 4 2 3 2 4 2 3 2 2 2 2 2 2 4 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 2 4 4 4 1 0 0 1 0 0 0 1 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 39 2 3 1 10 6 1 2 1 1 1 9 3 2 3 7 2 1 1 0 0 0 1 0 0 1.30852 +2 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 4 2 3 4 4 3 3 3 3 1 0 0 0 3 4 3 3 3 3 3 3 3 3 3 3 2 2 2 3 2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 2 2 2 2 1 0 0 1 0 0 0 1 1 1 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 2 8 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 35 4 5 7 10 7 1 1 2 1 7 7 3 2 2 2 2 -1 2 0 0 0 0 1 0 .8433 +11 11 2 9 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 0 3 2 2 2 2 2 4 1 2 3 3 3 3 1 0 0 0 3 2 4 5 1 4 2 4 2 5 4 4 4 2 4 2 2 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 2 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 0 0 0 0 0 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 7 6 65 1 2 4 2 4 1 1 11 1 4 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .76291 +2 -1 1 1 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 1 0 1 1 0 0 0 0 1 1 0 1 0 0 2 2 1 2 2 3 3 1 3 4 2 4 2 1 0 0 0 3 1 2 5 1 5 4 3 2 3 3 1 1 1 5 2 3 0 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 2 3 2 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 9 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 7 7 78 1 2 8 2 4 1 1 2 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.6445 +2 -1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 1 0 1 0 0 2 2 2 3 2 4 3 1 1 4 4 3 3 1 0 0 0 1 1 2 5 4 4 2 1 3 5 4 2 1 1 3 4 2 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 4 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 1 0 1 0 0 0 0 0 1 7 7 76 1 2 8 2 2 1 1 2 2 2 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 .99928 +3 -1 1 4 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 1 0 1 1 0 0 0 0 0 0 0 0 3 3 3 2 3 3 4 3 3 2 3 3 3 1 0 0 0 3 2 2 2 1 4 2 2 2 4 3 2 1 2 2 2 4 1 0 1 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 2 2 2 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 64 3 4 8 2 4 1 1 3 2 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.25226 +6 -1 3 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 3 5 4 4 2 1 4 3 4 2 1 0 0 0 3 1 2 4 1 2 2 4 1 5 4 1 4 4 3 1 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 1 2 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 5 4 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 7 6 69 2 3 8 2 2 1 1 6 1 8 12 1 1 4 2 2 -1 2 0 0 0 0 1 0 .71932 +6 -1 6 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 2 3 3 4 4 3 4 2 2 4 4 2 2 1 0 0 0 3 2 4 5 1 3 1 4 1 5 5 1 1 1 2 5 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 3 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 -1 4 5 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 5 5 56 4 6 9 5 1 1 1 6 1 9 4 5 2 4 6 1 -1 2 0 0 0 0 1 0 .65706 +2 -1 1 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 2 3 5 5 5 4 1 3 3 2 1 1 0 0 0 3 1 5 5 1 5 3 5 2 5 5 1 1 1 2 3 2 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 2 5 1 2 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 1 5 5 56 2 3 1 2 1 1 1 2 1 1 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.19279 +2 -1 1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 2 2 4 5 5 2 1 1 3 4 2 2 1 0 0 0 2 2 1 5 1 1 4 1 2 2 3 1 2 1 5 1 5 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 4 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 0 1 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 3 3 36 3 4 2 2 2 1 1 2 1 2 17 1 1 3 1 3 1 1 0 0 0 1 0 0 1.12867 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 2 3 3 3 3 3 3 4 3 3 1 0 0 0 4 1 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 0 0 0 1 0 0 0 1 1 1 1 0 1 1 0 0 0 0 1 1 0 1 1 0 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 26 4 6 9 2 1 1 1 -1 1 9 17 4 2 3 1 4 2 1 1 0 0 0 0 0 .98873 +2 -1 4 5 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 2 2 2 3 2 2 2 4 4 3 4 1 0 0 0 3 2 2 2 2 2 3 2 3 2 2 2 2 2 3 2 2 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 4 3 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 50 4 6 7 10 7 2 10 2 1 7 1 3 2 3 1 5 1 1 0 0 0 1 0 0 .50521 +2 -1 6 4 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 2 2 2 2 2 2 2 2 3 3 3 3 1 0 0 0 3 3 3 2 2 2 2 2 2 2 2 3 2 2 2 2 2 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 2 2 2 2 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 1 1 0 0 0 0 0 1 7 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 26 2 3 4 10 1 2 10 2 1 4 7 4 2 3 1 3 1 1 0 1 0 0 0 0 .38869 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 2 2 4 2 2 4 3 4 4 4 4 4 1 0 0 0 4 3 4 2 2 4 3 3 1 3 2 2 2 2 2 3 4 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 3 2 4 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 57 4 6 10 10 1 1 1 -1 1 10 1 4 2 4 7 1 -1 2 0 0 0 0 1 0 .58897 +2 -1 3 4 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 2 2 2 2 2 2 2 2 2 2 2 2 1 0 0 0 2 2 2 3 2 2 3 2 3 2 2 2 2 2 2 2 4 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 2 2 1 0 0 1 0 0 0 1 1 1 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 4 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 32 3 4 1 10 6 2 10 2 1 1 5 1 1 3 1 5 4 1 1 0 1 1 0 0 .84541 +11 11 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 3 3 4 3 3 2 2 3 3 0 0 0 1 3 2 3 4 2 4 2 3 2 4 4 1 1 2 3 2 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 2 3 2 1 1 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 1 1 1 0 0 0 0 0 1 6 5 63 2 3 1 7 4 1 1 11 1 1 17 4 2 4 4 1 -1 2 0 0 0 0 1 0 1.25033 +6 -1 5 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 4 5 4 5 3 5 3 4 3 3 0 0 1 0 4 2 5 5 1 5 1 4 1 4 5 1 1 2 5 2 1 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 3 3 3 4 1 0 0 0 0 0 0 1 1 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 36 3 4 10 7 1 1 1 6 1 10 2 4 2 1 6 1 -1 2 0 0 0 0 1 0 .88829 +1 -1 5 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 3 2 2 2 2 3 2 2 3 3 3 3 1 0 0 0 3 4 3 3 3 3 3 3 3 3 4 1 3 3 3 3 3 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 2 2 2 1 1 1 0 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 39 1 2 1 10 5 1 1 1 1 1 13 1 1 3 1 4 2 1 1 0 1 0 0 0 1.63154 +2 -1 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 3 2 2 3 2 2 2 3 3 4 4 1 0 0 0 4 3 3 3 3 3 3 3 3 3 2 2 2 3 4 3 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 4 4 2 1 1 0 1 0 1 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 1 0 0 2 7 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 34 2 3 1 10 2 1 1 2 1 1 6 3 2 3 1 5 4 1 1 0 1 1 0 0 1.49897 +10 10 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 3 3 3 3 3 3 5 5 4 4 0 0 1 0 4 2 3 4 3 3 3 2 3 3 3 3 3 3 3 3 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 3 3 2 2 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 4 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 27 4 5 2 10 3 1 4 10 2 1 8 4 2 3 1 4 2 1 1 1 0 0 0 0 .95976 +1 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 2 3 3 4 1 4 2 2 3 3 3 3 1 0 0 0 3 2 2 4 2 2 3 2 1 3 2 2 1 1 3 2 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 2 2 2 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 7 75 1 2 8 7 7 1 1 1 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.08211 +1 -1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 2 2 2 4 4 4 2 2 3 3 3 3 1 0 0 0 2 2 2 4 1 3 2 2 2 4 4 1 1 2 2 2 2 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 1 1 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 81 3 4 8 2 6 1 1 1 1 8 9 2 1 4 6 1 -1 2 0 0 0 0 1 0 .8407 +10 2 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 2 3 2 5 5 1 1 3 3 3 3 1 0 0 0 3 2 1 5 2 5 5 3 1 5 5 1 1 2 1 1 1 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 2 5 2 1 0 0 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 2 6 5 62 1 2 8 2 6 1 1 2 2 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.21096 +2 -1 1 5 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 4 4 4 5 3 5 3 3 4 4 4 4 1 0 0 0 2 2 3 5 1 3 1 3 1 5 3 3 3 3 3 3 3 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 2 3 3 1 0 1 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 33 3 4 1 2 1 1 1 2 2 1 17 3 2 3 1 4 2 1 1 0 0 1 0 0 1.42099 +10 10 4 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 5 5 3 5 3 4 4 4 4 0 0 1 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 0 0 0 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 -1 -1 0 0 0 0 0 1 1 1 2 3 3 42 2 3 1 2 1 1 1 10 2 1 17 4 2 3 1 3 1 1 0 1 0 0 0 0 1.31504 +10 2 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 2 2 6 2 2 2 2 1 1 1 0 0 0 3 2 2 2 2 2 2 2 2 2 2 2 1 2 2 2 2 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 6 6 2 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -1 4 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 49 2 3 7 5 2 1 1 2 2 1 16 4 2 4 4 5 11 2 0 0 0 0 1 0 .86112 +2 -1 3 3 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 1 0 0 1 1 0 0 0 0 2 2 3 3 4 4 4 1 3 2 2 3 2 0 1 0 0 3 4 4 3 1 2 1 3 5 4 4 1 1 1 2 1 3 0 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 2 1 3 1 1 0 0 1 0 0 0 1 1 1 1 0 1 1 1 1 0 0 1 1 0 1 1 1 0 3 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 22 2 3 2 5 4 1 1 2 2 2 16 4 2 1 4 5 11 2 0 0 0 0 1 0 .53574 +10 10 4 10 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 1 1 0 1 1 0 0 1 1 0 1 0 0 1 3 3 2 5 5 5 1 1 2 4 1 4 1 0 0 0 3 2 5 5 1 4 3 5 2 5 5 1 1 1 5 1 1 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 66 4 5 8 8 3 1 1 10 1 8 17 2 1 4 4 1 -1 2 0 0 0 0 1 0 .82356 +9 -1 8 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 3 4 3 4 2 2 4 4 4 4 1 0 0 0 4 2 3 3 2 4 2 3 2 4 3 2 2 2 2 2 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 3 3 3 4 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 63 2 3 8 8 7 1 1 -1 1 8 8 2 1 4 6 1 -1 2 0 0 0 0 1 0 .81723 +1 -1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 3 3 4 3 4 3 2 4 1 3 4 4 4 1 0 0 0 3 2 3 5 1 5 5 2 1 2 2 1 1 1 4 3 5 0 0 1 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 2 1 5 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 7 7 75 2 3 8 8 2 1 1 1 1 8 9 2 1 4 4 1 -1 2 0 0 0 0 1 0 1.36413 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 4 4 2 4 1 1 3 3 2 2 0 1 0 0 3 1 4 4 1 4 2 2 4 4 4 2 4 2 3 1 1 1 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 2 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 7 6 74 2 3 8 8 7 1 1 -1 2 8 9 4 2 4 2 2 -1 2 0 0 0 0 1 0 .74298 +2 -1 2 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 3 2 4 4 4 3 3 2 2 1 0 0 0 3 3 4 4 2 4 2 2 4 4 4 1 4 2 2 2 2 1 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 4 2 2 3 0 0 0 1 0 0 0 1 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 -1 7 2 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 3 3 42 3 4 10 7 1 1 1 2 2 10 12 1 1 4 2 4 11 2 0 0 0 0 1 0 1.99748 +6 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 3 4 3 2 5 5 3 1 2 4 2 4 4 1 0 0 0 4 2 3 3 3 3 3 3 3 3 3 1 1 4 3 3 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 3 3 3 1 0 0 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 8 5 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 2 2 32 1 2 11 7 2 1 1 6 2 11 10 1 1 3 1 3 1 1 0 1 0 0 0 0 1.29006 +2 -1 6 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 0 0 0 1 0 0 0 0 2 3 3 3 3 3 3 2 2 2 3 4 4 1 0 0 0 3 2 2 4 1 3 2 2 1 4 4 1 1 2 2 1 1 0 0 1 1 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 2 3 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 7 7 80 1 2 8 5 7 1 1 2 1 8 4 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.52551 +10 2 7 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 1 0 0 1 0 0 0 0 3 3 3 2 4 3 3 2 2 3 3 4 3 1 0 0 0 3 4 2 3 3 3 3 3 3 4 3 2 3 2 2 2 4 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 3 2 2 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 2 8 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 63 4 5 2 5 7 1 1 2 1 2 16 1 1 4 6 1 -1 2 0 0 0 0 1 0 1.45392 +2 -1 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 1 2 3 2 2 2 3 3 2 2 1 0 0 0 2 3 2 2 2 2 2 2 3 2 2 2 4 4 2 2 2 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 56 4 6 7 5 7 1 1 2 1 7 3 4 2 4 4 1 -1 2 0 0 0 0 1 0 .81829 +9 -1 10 10 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 4 3 2 3 4 3 3 2 2 2 1 0 0 0 4 4 3 3 3 3 3 3 3 3 1 2 1 2 2 2 4 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 42 1 2 1 5 3 1 4 -1 1 1 9 4 2 3 1 4 2 1 1 0 0 0 0 0 1.68868 +10 10 8 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 1 1 1 1 1 1 2 2 1 1 1 0 0 0 1 3 1 1 1 1 4 2 4 1 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 1 1 0 0 0 1 0 0 0 1 1 1 1 0 0 1 1 1 0 0 1 1 0 0 0 0 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 -1 -1 0 0 0 0 0 1 1 1 1 1 1 20 4 5 1 5 1 2 10 10 2 1 16 4 2 2 2 2 -1 2 0 0 0 0 1 0 .49897 +6 -1 9 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 0 0 0 0 0 0 0 0 2 2 2 4 5 2 3 5 1 3 4 4 2 0 1 0 0 3 2 3 5 1 5 3 2 5 5 5 1 2 1 2 6 1 0 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 4 2 5 2 1 1 0 1 0 1 0 1 1 0 1 0 1 1 1 1 1 0 1 1 1 1 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 2 2 25 2 3 5 6 4 1 1 6 1 5 16 4 2 1 4 1 -1 2 0 0 0 0 1 0 .39128 +2 -1 3 7 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 1 1 0 1 1 0 0 0 0 0 1 1 0 0 0 2 2 2 2 4 3 3 1 3 2 3 2 2 0 1 0 0 3 2 3 3 2 3 3 2 2 4 3 2 2 2 2 3 3 0 0 1 1 1 0 0 0 0 0 0 1 0 1 0 1 0 0 1 2 2 3 1 0 0 1 0 1 0 1 1 1 1 0 0 1 1 0 0 0 0 1 0 0 1 1 0 2 9 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 1 1 20 2 3 5 6 3 1 1 2 1 5 7 4 2 2 2 2 -1 2 0 0 0 0 1 0 .24876 +3 -1 4 5 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 1 0 1 0 0 0 1 0 0 0 0 3 3 3 2 4 3 4 3 2 3 3 3 2 1 0 0 0 3 2 3 3 2 4 2 2 3 4 4 2 3 2 3 3 2 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 1 2 3 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 9 2 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 4 4 52 2 3 1 2 5 1 1 3 2 1 12 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.3323 +6 -1 1 3 1 0 0 1 1 1 1 0 0 0 1 0 0 0 0 1 1 1 1 1 1 1 0 0 0 1 1 0 0 0 2 2 2 2 2 4 4 1 2 2 2 3 2 1 0 0 0 2 2 4 4 1 4 4 3 5 5 5 1 2 4 3 1 2 1 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 5 1 1 1 0 1 0 0 0 1 1 1 1 0 1 1 1 1 1 0 1 1 0 1 0 1 0 1 9 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 4 4 49 2 3 1 9 4 1 1 6 1 1 17 1 1 3 2 4 1 1 0 0 0 1 0 0 1.10445 +10 3 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 4 5 4 5 1 5 3 4 1 1 1 0 0 0 4 4 6 6 6 6 6 6 6 6 5 2 4 4 2 1 2 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 2 5 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 0 0 1 0 0 0 2 9 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 7 6 65 2 3 8 8 3 1 1 3 2 1 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 .51486 +10 10 9 5 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 2 3 3 3 4 3 4 2 5 3 4 2 1 0 0 1 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 5 5 4 2 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 7 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 4 4 49 2 3 2 9 7 1 1 10 2 1 17 1 1 4 2 2 -1 2 0 0 0 0 1 0 .63015 +10 2 1 2 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 1 1 1 0 0 0 1 1 0 0 0 0 1 1 1 2 3 1 2 1 1 2 3 3 3 1 0 0 0 2 1 1 1 4 1 5 1 4 4 4 3 3 2 2 2 3 1 0 1 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 1 1 1 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 2 9 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 5 5 59 1 2 8 9 4 1 1 2 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .56117 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 2 2 2 3 2 4 2 1 1 3 3 3 3 1 0 0 0 2 2 2 3 1 3 3 2 2 4 4 1 1 1 2 1 2 1 0 1 0 0 1 0 0 0 1 0 1 0 1 0 0 0 0 2 2 4 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 34 2 3 2 11 3 1 1 2 1 2 8 4 2 3 3 3 2 1 0 0 1 1 0 0 .78515 +2 -1 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 1 1 3 4 3 4 2 3 3 3 3 3 1 0 0 0 2 3 3 3 2 3 4 3 3 3 3 2 4 2 2 3 3 0 1 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 2 2 2 3 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 0 0 0 0 0 0 1 4 4 54 2 3 4 5 4 1 1 2 1 4 12 1 1 4 2 2 -1 2 0 0 0 0 1 0 .86189 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 3 3 3 4 5 4 4 4 4 4 4 4 4 1 0 0 0 3 2 3 4 1 4 3 3 2 4 4 1 1 1 4 2 1 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 2 4 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 62 4 5 1 11 7 1 1 2 1 1 8 2 1 4 6 2 11 2 0 0 0 0 1 0 1.52076 +1 -1 1 10 1 0 0 1 0 1 1 1 0 0 1 0 0 0 0 1 0 1 1 0 1 1 1 0 0 1 0 1 0 0 2 2 2 3 4 2 4 2 4 3 3 2 2 1 0 0 0 2 1 4 4 1 3 5 2 2 4 4 1 4 2 3 3 1 0 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 1 1 2 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 7 6 73 2 3 4 5 2 1 1 1 1 4 8 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.05472 +6 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 2 2 3 4 1 2 2 1 2 3 3 2 3 1 0 0 0 1 2 2 4 2 2 4 2 4 2 2 2 2 2 4 4 1 0 1 1 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 2 2 1 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 66 3 4 1 3 7 1 2 6 1 1 11 6 -1 4 2 4 11 2 0 0 0 0 1 0 1.31599 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 4 2 2 2 2 4 2 4 2 2 1 0 0 0 2 4 6 6 6 6 6 6 6 6 4 2 2 2 2 2 4 1 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 2 2 2 4 1 1 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 1 1 21 4 5 5 3 3 2 14 2 2 1 16 4 2 1 4 4 11 2 0 0 0 0 1 0 .46447 +11 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 2 4 3 3 2 2 3 3 2 3 3 1 0 0 0 3 4 6 6 6 6 6 6 6 6 4 3 3 3 3 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 2 2 29 1 2 2 3 4 2 9 2 2 1 11 4 2 3 1 5 2 1 1 0 1 0 0 0 .47414 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 1 2 2 2 2 2 2 2 2 2 1 0 0 0 2 4 6 6 6 6 6 6 6 6 2 2 2 2 4 2 2 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 57 3 4 1 3 7 2 9 2 1 1 17 4 2 3 1 4 1 1 0 0 0 1 0 0 .50367 +1 -1 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 4 2 2 2 2 2 2 2 2 2 1 0 0 0 2 2 2 2 2 2 2 3 2 2 2 2 1 2 4 2 2 0 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 3 2 2 2 1 0 0 1 0 0 0 1 1 1 1 1 1 0 1 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 2 2 29 2 3 1 3 4 1 4 1 1 1 11 4 2 3 1 3 1 1 1 0 0 0 0 0 1.81596 +2 -1 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 5 3 3 3 3 3 3 3 3 3 0 0 1 0 3 4 6 6 6 6 6 6 6 6 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 18 3 4 1 3 1 2 9 2 2 1 9 4 2 1 4 5 11 2 0 0 0 0 1 0 .52237 +10 10 11 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 3 3 3 3 3 3 3 3 3 0 0 1 0 4 3 6 6 3 6 6 6 3 6 2 2 2 3 4 2 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 1 1 0 1 0 0 0 1 1 1 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 1 1 19 3 4 5 3 1 2 14 10 2 4 7 3 2 1 4 2 11 2 0 0 0 0 1 0 .30967 +10 2 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 4 4 4 4 4 2 2 2 2 1 0 0 0 2 4 2 2 2 4 4 2 4 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 2 2 2 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 4 4 54 3 4 2 3 7 1 2 2 1 2 6 3 2 3 5 2 1 1 0 0 0 1 0 0 1.0345 +2 -1 1 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 1 1 1 0 0 0 1 0 0 1 0 0 0 0 1 2 2 4 1 1 1 1 1 3 2 3 3 1 0 0 0 1 1 1 1 1 1 5 1 4 2 4 1 1 2 1 2 4 0 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 2 2 3 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 69 2 3 8 5 6 1 1 2 2 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .85808 +10 1 1 6 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 1 1 1 1 0 0 1 1 0 1 1 0 0 0 0 2 2 3 1 1 2 2 1 3 1 1 2 2 1 0 0 0 3 2 1 2 1 4 2 2 2 2 1 1 1 1 1 4 1 1 0 0 1 0 1 0 0 0 1 0 0 1 0 1 0 0 0 2 2 2 1 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 9 3 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 1 1 0 1 1 2 4 4 54 3 4 1 5 6 1 1 1 2 1 17 1 1 4 2 3 11 2 0 0 0 0 1 0 1.86393 +2 -1 1 1 1 0 0 1 1 1 1 0 0 0 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 2 2 2 2 2 2 1 1 2 2 2 2 1 0 0 0 2 1 2 5 1 4 2 4 1 4 3 1 1 4 2 2 4 0 1 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 2 2 4 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 4 4 50 1 2 1 5 5 1 1 2 1 1 17 1 1 4 2 4 11 2 0 0 0 0 1 0 1.46641 +10 10 1 5 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 2 2 3 2 3 4 4 2 3 2 3 2 2 1 0 0 0 2 2 3 4 2 3 2 3 2 4 4 2 2 3 3 2 2 1 0 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 2 2 3 2 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 2 9 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 5 5 57 1 1 1 8 4 1 1 10 2 1 15 1 1 4 2 2 -1 2 0 0 0 0 1 0 2.33177 +10 10 8 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 3 2 3 3 2 3 2 3 2 3 3 3 1 0 0 0 3 4 3 3 3 3 3 3 3 3 2 2 4 2 4 2 1 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 2 2 2 2 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 2 2 28 4 5 1 3 4 2 10 10 1 1 9 4 2 2 2 2 -1 2 0 0 0 0 1 0 .85231 +2 -1 5 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 3 3 2 3 2 3 4 2 4 2 3 2 3 1 0 0 0 3 4 3 3 3 6 3 3 3 3 2 1 1 2 2 2 2 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 2 2 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 1 1 0 0 1 0 0 1 8 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 2 2 26 4 5 2 3 4 2 10 2 2 2 7 4 2 1 4 5 11 2 0 0 0 0 1 0 .50526 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 1 0 0 0 1 0 0 0 0 2 2 2 2 3 2 2 2 3 4 4 3 3 1 0 0 0 2 1 2 4 3 3 3 2 2 4 3 1 3 2 2 1 4 1 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 2 1 1 1 1 0 0 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 1 7 6 68 1 2 8 6 5 1 1 1 1 8 12 2 1 4 2 2 -1 2 0 0 0 0 1 0 .38656 +2 -1 1 4 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 2 1 1 3 4 3 2 3 2 3 3 3 3 1 0 0 0 3 4 3 3 3 3 3 3 3 3 2 1 2 2 2 1 4 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 2 2 2 2 1 0 0 1 0 0 0 1 1 1 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 44 1 2 1 6 5 1 1 2 1 1 13 1 1 4 2 2 -1 2 0 0 0 0 1 0 .84514 +11 11 11 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 6 2 3 4 4 4 4 1 0 0 0 3 4 6 6 6 6 6 6 6 6 3 3 1 3 3 2 2 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 3 2 3 3 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 8 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 29 4 5 2 3 4 2 10 11 1 2 9 4 2 2 2 2 -1 2 0 0 0 0 1 0 .50526 +10 1 1 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 1 0 0 0 1 0 0 0 0 2 3 3 2 4 4 4 2 4 3 3 3 3 1 0 0 0 3 2 4 4 1 3 2 4 4 4 3 2 2 2 2 1 2 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 2 2 2 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 55 1 2 8 6 5 1 1 1 1 8 14 2 1 4 2 3 11 2 0 0 0 0 1 0 .61359 +2 -1 1 1 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 0 0 1 1 1 1 0 0 2 1 2 2 2 2 2 2 2 2 3 3 3 1 0 0 0 2 1 1 3 1 4 4 2 2 2 3 1 1 4 2 1 4 0 0 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 2 2 2 2 1 1 0 0 0 0 0 1 1 1 1 1 1 0 1 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 47 1 1 1 6 5 1 1 2 1 1 14 1 1 3 1 4 2 1 0 0 0 1 0 0 1.15562 +2 -1 3 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 3 4 4 4 4 1 0 0 0 3 4 6 6 6 6 6 6 6 6 3 3 3 3 3 3 3 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 2 4 1 1 0 1 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 8 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 45 3 4 1 3 4 2 10 2 1 1 11 4 2 3 1 5 3 1 0 1 1 1 0 0 .79311 +2 -1 1 1 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 1 1 1 0 0 0 2 3 3 3 4 4 4 4 4 3 3 3 3 1 0 0 0 2 4 3 4 1 6 6 6 1 4 3 1 1 2 2 2 2 0 0 1 0 1 1 0 0 0 1 0 0 0 1 0 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 -1 0 0 0 0 0 0 0 0 2 7 6 66 2 3 8 6 2 1 1 2 1 8 10 2 1 4 2 2 -1 2 0 0 0 0 1 0 .39843 +1 -1 1 4 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 1 0 0 0 0 2 2 2 3 3 3 4 1 2 3 3 2 2 1 0 0 0 3 2 2 4 2 4 4 2 4 2 3 1 1 1 1 1 1 1 0 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 2 2 4 1 1 0 0 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 53 1 2 1 6 4 1 1 1 2 1 17 1 1 4 2 2 -1 2 0 0 0 0 1 0 .83692 +9 -1 6 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 3 4 3 3 2 4 2 4 4 3 4 1 0 0 0 4 4 3 3 3 3 1 3 3 3 5 1 1 1 5 1 1 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 2 3 2 1 0 0 1 0 0 0 1 1 1 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 2 2 25 4 5 1 3 4 2 10 -1 1 1 10 4 2 1 4 5 11 2 0 0 0 0 1 0 .85231 +10 10 3 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 3 3 3 3 6 4 4 3 4 3 3 3 3 1 0 0 0 3 2 4 4 1 4 2 4 1 5 3 2 2 2 2 4 1 1 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 0 1 1 1 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 6 5 63 3 4 8 2 1 1 1 10 2 8 16 4 2 4 2 3 11 2 0 0 0 0 1 0 1.21218 +2 -1 3 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 3 3 4 4 2 4 3 3 4 4 0 0 1 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 28 4 6 7 6 2 1 1 2 1 7 2 3 2 3 3 2 1 1 0 0 1 0 0 0 .51941 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 4 5 4 5 1 4 2 3 2 2 1 0 0 0 2 1 2 4 1 5 5 1 2 5 5 1 1 1 5 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 4 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 76 4 6 8 6 9 1 1 2 1 8 17 2 1 4 6 3 11 2 0 0 0 0 1 0 .44527 +10 10 6 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 3 3 3 3 3 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 5 1 1 1 5 1 5 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 3 3 3 3 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 23 4 5 2 6 3 1 1 10 2 1 16 3 2 3 1 3 1 1 1 0 0 0 0 0 .51245 +4 -1 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 1 0 0 1 0 0 0 0 3 2 2 4 5 5 5 1 3 3 4 1 1 1 0 0 0 1 4 5 5 1 5 1 5 1 5 5 1 1 1 5 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 63 2 3 1 6 7 1 1 4 2 2 9 2 1 4 2 3 11 2 0 0 0 0 1 0 .49171 +9 -1 11 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 2 2 3 4 4 4 1 2 4 4 3 3 1 0 0 0 3 1 5 5 1 5 1 4 1 5 5 1 1 1 5 2 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 7 76 2 3 8 6 3 1 1 -1 1 8 17 3 2 4 6 1 -1 2 0 0 0 0 1 0 .58268 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 2 3 3 3 3 4 4 4 4 0 1 0 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 -1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 29 4 6 9 6 1 1 1 -1 1 9 16 3 2 3 3 2 1 1 0 0 0 1 0 0 .42587 +9 -1 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 1 2 4 1 5 5 1 4 3 3 2 2 1 0 0 0 4 3 5 5 1 5 4 5 4 5 5 1 1 1 5 1 1 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 5 3 5 1 1 0 0 1 0 0 0 1 0 1 1 0 1 1 1 1 0 0 1 1 0 0 0 1 0 1 9 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 4 4 48 4 5 1 6 7 1 1 -1 1 1 17 3 2 4 2 3 11 2 0 0 0 0 1 0 .80419 +10 3 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 3 2 5 5 4 1 2 4 4 4 4 1 0 0 0 4 2 1 5 1 5 1 2 1 5 2 1 1 1 2 1 3 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 53 3 4 1 2 1 1 1 3 2 1 12 1 1 4 2 5 11 2 0 0 0 0 1 0 1.70804 +10 10 3 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 2 2 2 3 4 5 5 3 5 4 4 3 3 1 0 0 0 3 2 4 5 1 4 1 4 3 5 5 1 1 1 5 4 1 1 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 2 2 2 5 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 -1 -1 0 0 0 0 0 1 1 1 2 4 4 45 2 3 1 2 3 1 1 10 1 1 12 4 2 3 5 2 1 1 0 0 0 1 0 0 .91614 +9 -1 6 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 4 4 4 5 5 5 5 5 4 4 4 4 1 0 0 0 4 3 1 1 1 1 1 3 1 1 4 4 4 4 4 4 4 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 4 3 4 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 7 6 65 3 4 1 1 1 1 1 -1 1 1 4 1 1 4 2 2 -1 2 0 0 0 0 1 0 2.66807 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 2 4 2 3 3 3 3 4 3 4 4 1 0 0 0 2 4 3 3 3 4 3 3 3 3 1 3 1 1 2 3 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 2 4 2 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 4 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 54 4 6 9 1 7 1 1 2 2 10 4 3 2 4 2 2 -1 2 0 0 0 0 1 0 1.86365 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 2 2 2 4 4 5 4 4 2 4 4 3 3 1 0 0 0 4 4 2 3 1 5 4 2 2 2 3 1 1 1 2 3 1 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 1 1 2 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 2 4 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 27 4 6 7 9 1 1 1 2 1 7 17 4 2 3 1 4 2 1 1 0 1 0 0 0 .97051 +10 1 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 1 0 1 0 0 3 2 3 4 2 3 4 1 2 3 3 2 3 1 0 0 0 3 2 3 5 1 5 1 5 1 5 3 1 1 1 2 2 3 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 2 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 2 7 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 59 4 5 1 9 1 1 1 1 1 1 17 4 2 4 4 1 -1 2 0 0 0 0 1 0 1.06324 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 2 2 2 3 3 1 1 1 1 3 3 3 3 1 0 0 0 1 1 1 5 1 2 2 2 1 5 5 1 1 1 4 1 1 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 5 2 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 7 79 4 5 8 9 1 1 1 2 1 8 5 2 1 4 2 2 -1 2 0 0 0 0 1 0 .58814 +10 10 3 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 4 4 2 3 4 4 3 3 1 0 0 0 4 3 3 4 1 4 2 4 3 4 4 1 1 1 2 1 1 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 2 2 3 1 0 0 1 0 0 0 1 0 1 1 1 1 0 0 0 0 0 1 0 0 0 1 0 0 2 6 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 3 3 42 2 3 1 9 2 1 1 10 1 1 6 5 2 3 3 3 1 1 1 0 0 0 0 0 .8869 +1 -1 1 1 1 0 0 0 0 1 0 0 0 0 1 1 1 0 0 1 1 0 0 0 1 0 1 0 0 1 1 1 0 0 1 2 1 2 3 3 2 1 1 2 2 2 3 1 0 0 0 2 1 2 4 1 3 5 2 4 3 4 2 1 4 3 2 4 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 2 5 1 1 1 0 0 0 0 0 0 1 1 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 2 8 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 70 2 3 8 7 6 1 1 1 1 8 7 2 1 4 2 2 -1 2 0 0 0 0 1 0 .5968 +2 -1 7 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 1 0 0 0 4 4 4 2 3 3 4 3 4 3 4 3 3 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 3 2 3 1 0 0 1 0 0 0 1 1 1 1 0 1 1 0 0 0 0 0 1 1 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 35 4 5 2 5 4 1 1 2 1 2 7 5 2 3 3 3 1 1 0 1 0 0 0 0 1.20576 +4 -1 1 6 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 2 3 2 3 5 4 5 3 5 4 4 4 3 1 0 0 0 3 4 3 3 3 3 3 3 3 3 4 1 2 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 2 3 2 1 0 0 1 0 1 0 1 1 0 1 1 1 1 0 0 0 0 0 1 0 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 36 4 6 11 9 1 1 1 4 1 11 8 4 2 3 5 4 2 1 1 0 0 1 0 0 .63833 +9 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 3 5 3 5 3 5 4 4 4 4 1 0 0 0 4 2 3 5 1 5 1 3 1 5 3 1 1 1 5 1 1 0 0 1 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 3 3 3 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 7 7 81 4 6 8 9 3 1 1 -1 1 8 16 4 2 4 6 1 -1 2 0 0 0 0 1 0 .98649 +1 -1 1 4 0 0 0 1 0 0 1 0 0 0 1 0 1 0 0 1 1 1 1 1 0 1 0 0 1 1 1 1 0 0 2 2 2 2 2 2 2 1 1 2 3 2 2 1 0 0 0 1 1 1 2 2 3 4 2 4 5 5 1 1 1 2 1 4 1 0 1 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 2 1 5 1 1 1 1 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 4 4 54 1 1 4 8 4 1 1 1 1 4 15 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.39183 +10 10 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 3 3 3 3 3 3 3 3 2 3 1 0 0 0 4 4 3 3 3 3 3 3 3 3 5 1 3 3 3 5 3 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 3 3 3 1 1 0 0 1 0 0 0 1 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 2 2 34 2 3 7 6 2 1 1 10 2 1 16 1 1 3 1 4 2 1 0 0 0 1 0 0 .62565 +2 -1 1 9 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 1 2 1 1 2 3 2 2 1 0 0 0 1 1 2 4 1 4 5 1 2 2 2 1 1 2 2 2 4 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 2 3 3 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 7 6 66 2 3 8 6 4 1 1 2 1 8 17 3 2 4 2 3 11 2 0 0 0 0 1 0 .21992 +2 -1 1 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 3 3 4 2 4 1 3 3 3 3 1 0 0 0 1 2 2 3 2 2 2 2 2 4 2 1 1 1 3 2 2 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 2 2 1 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 7 78 3 4 8 3 7 2 15 2 1 8 17 5 2 4 6 1 -1 2 0 0 0 0 1 0 .35859 +2 -1 9 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 3 3 4 4 3 2 3 2 2 3 4 2 2 1 0 0 0 3 4 2 5 1 3 1 3 2 4 3 1 1 1 3 2 1 1 0 1 0 0 1 0 0 0 0 0 1 1 0 1 0 0 0 2 3 1 5 1 0 0 0 0 0 0 1 0 1 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 2 5 5 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 4 4 48 3 4 2 3 2 2 15 2 1 2 17 5 2 3 3 3 1 1 0 0 0 1 0 0 .38466 +10 2 6 6 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 3 4 3 3 4 2 2 1 1 3 2 3 2 1 0 0 0 3 4 3 3 3 3 3 3 3 3 3 1 1 2 4 1 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 3 3 1 1 1 1 1 0 0 0 1 1 1 0 0 0 0 1 1 1 0 0 1 0 1 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 2 1 1 19 3 4 5 3 3 2 14 2 2 1 16 6 -1 3 4 5 4 1 0 0 1 1 0 0 .62995 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 1 1 0 0 0 1 1 1 0 0 2 2 2 2 4 2 4 1 4 3 4 2 3 1 0 0 0 2 3 4 3 2 4 4 2 2 4 4 1 2 1 2 2 2 1 0 1 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 2 1 1 2 1 1 0 0 0 0 0 1 1 1 1 0 0 1 1 1 0 0 1 1 0 1 1 0 0 2 9 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 1 1 20 4 5 5 3 5 2 14 2 2 1 17 5 2 3 4 5 3 1 0 0 1 1 0 0 .37787 +2 -1 3 7 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 2 4 3 2 2 2 3 3 3 3 1 0 0 0 3 2 2 3 1 2 3 2 4 4 3 2 2 1 2 2 2 0 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 3 2 1 0 0 1 1 0 0 1 1 1 1 1 1 1 0 1 0 0 1 1 1 1 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 27 1 1 11 2 4 1 1 2 2 1 11 1 1 3 1 3 1 1 1 0 0 0 0 0 1.14707 +10 10 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 0 3 2 2 4 5 4 4 2 4 4 4 3 3 1 0 0 0 4 2 3 3 1 4 3 3 3 4 4 2 3 2 4 4 2 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 2 2 1 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 1 0 1 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 1 7 6 65 2 3 8 2 3 1 1 10 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .64833 +10 3 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 3 2 4 3 1 4 4 4 4 1 0 0 0 3 4 3 3 3 3 3 3 3 3 3 1 2 1 3 3 5 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 60 3 4 1 8 3 1 1 3 1 1 16 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.45319 +2 -1 6 6 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 4 2 5 2 1 3 3 4 3 1 1 0 0 0 2 4 3 3 3 3 3 3 3 3 4 3 1 1 5 1 1 0 1 1 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 3 3 3 3 1 1 0 1 0 0 0 1 1 1 1 0 1 1 1 0 0 0 0 1 1 0 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 21 2 3 1 4 7 1 1 2 1 1 8 3 2 1 4 3 11 2 0 0 0 0 1 0 1.56816 +7 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 1 0 1 1 1 0 1 1 1 1 0 0 2 2 3 3 3 2 4 2 3 2 2 2 2 1 0 0 0 2 2 4 5 2 4 3 4 2 4 3 1 1 1 2 1 1 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 2 2 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 8 2 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 5 5 56 2 3 1 4 1 1 1 7 1 1 11 2 1 4 4 2 11 2 0 0 0 0 1 0 1.63863 +10 3 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 1 0 1 0 0 0 0 0 2 3 3 4 4 4 4 4 2 4 4 1 2 1 0 0 0 3 2 4 5 1 5 3 5 2 5 5 3 2 1 3 2 1 1 0 1 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 1 1 3 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 56 4 5 4 2 3 1 1 3 1 4 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.29896 +10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 3 3 5 5 3 3 3 3 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 3 3 3 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 20 4 5 11 8 2 1 1 10 2 1 8 4 2 3 1 4 2 1 1 1 0 0 0 0 1.16131 +10 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 2 3 3 4 4 4 4 4 3 3 3 3 1 0 0 0 4 4 3 3 3 3 3 3 3 3 4 1 1 1 2 2 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 2 2 2 1 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 20 4 5 1 6 1 1 1 10 2 1 16 1 1 1 4 3 11 2 0 0 0 0 1 0 .81152 +10 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 4 4 4 2 4 3 3 3 3 1 0 0 0 4 4 3 3 3 3 3 3 3 3 4 1 1 1 2 3 1 0 0 1 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 2 2 2 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 47 2 3 2 6 1 1 1 10 2 1 17 1 1 4 2 3 11 2 0 0 0 0 1 0 .47343 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 4 4 4 5 3 5 1 3 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 3 3 3 3 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 23 4 6 9 4 7 1 1 -1 1 9 17 3 2 3 3 4 3 1 1 0 1 0 0 0 1.32775 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 0 1 0 0 0 1 0 0 0 0 1 2 2 2 2 2 1 1 1 2 3 2 2 1 0 0 0 1 2 5 4 1 5 1 4 1 3 2 1 1 1 1 1 2 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 6 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 6 5 62 4 6 8 4 7 1 1 2 1 8 17 3 2 4 4 1 -1 2 0 0 0 0 1 0 .78444 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 3 3 4 2 2 0 0 1 0 4 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 3 3 3 3 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 2 2 25 4 5 7 4 6 1 1 -1 2 1 17 3 2 1 4 4 11 2 0 0 0 0 1 0 1.86046 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 3 3 4 5 5 5 4 4 4 4 2 2 1 0 0 0 4 4 3 3 3 3 3 3 3 3 5 1 1 1 2 1 1 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 1 4 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 9 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 71 3 4 8 4 7 1 1 -1 2 8 17 2 1 4 2 3 11 2 0 0 0 0 1 0 .8362 +10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 4 2 4 2 4 3 3 3 3 1 0 0 0 4 4 3 3 3 3 3 3 3 3 1 1 1 1 2 2 1 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 1 3 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 4 4 47 3 4 1 4 7 1 1 10 1 1 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 2.05928 +11 11 6 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 1 0 0 0 1 0 0 0 0 2 2 2 3 4 2 4 1 2 3 3 2 2 1 0 0 0 3 2 2 3 2 4 4 2 2 3 4 1 1 1 2 2 1 1 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 1 3 1 0 0 1 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 41 4 5 1 4 1 1 1 11 1 1 17 1 1 4 2 4 11 2 0 0 0 0 1 0 2.33094 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 3 2 2 2 4 4 3 3 2 2 1 0 0 0 2 1 3 4 1 2 4 2 4 3 3 1 1 1 2 1 1 1 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 1 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 -1 -1 0 0 0 0 0 1 1 1 2 2 2 29 4 6 9 4 1 1 1 -1 1 9 17 3 2 3 3 4 3 1 1 0 1 1 0 0 1.095 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 4 4 3 5 3 3 2 2 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 1 2 1 2 3 2 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 1 2 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 51 4 5 11 8 4 1 1 2 2 1 16 1 1 4 2 3 11 2 0 0 0 0 1 0 1.1512 +2 -1 1 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 2 3 4 3 2 1 1 3 5 4 4 3 3 1 0 0 0 3 4 3 3 3 3 3 3 3 3 4 1 1 1 5 1 1 1 0 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 62 4 5 8 4 7 1 1 2 2 1 17 1 1 4 2 4 11 2 0 0 0 0 1 0 1.29015 +10 10 1 6 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 2 2 2 2 4 2 4 1 3 2 4 3 3 1 0 0 0 3 4 2 5 1 4 2 3 2 3 4 2 2 2 2 2 3 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 2 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 1 0 0 1 1 1 2 5 5 59 1 2 11 7 2 1 1 10 2 1 13 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.65324 +2 -1 1 7 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 0 1 1 0 0 0 2 2 2 3 5 4 4 2 4 4 4 3 3 1 0 0 0 3 2 4 5 1 5 1 4 1 5 5 1 2 2 4 3 1 1 0 0 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 2 1 3 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 3 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 47 1 2 1 7 3 2 15 2 1 1 17 4 2 4 6 1 -1 2 0 0 0 0 1 0 .73837 +2 -1 1 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 4 4 4 1 3 5 3 3 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 2 2 2 3 2 3 2 1 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 3 5 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 7 76 2 3 8 9 1 1 1 2 1 8 9 2 1 4 6 1 -1 2 0 0 0 0 1 0 .94252 +5 -1 3 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 3 2 3 2 5 2 4 1 3 4 4 3 3 1 0 0 0 3 2 2 3 3 4 2 3 2 4 3 3 3 3 2 5 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 2 2 2 4 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 7 6 71 3 4 8 7 1 1 2 5 1 8 8 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.2736 +4 -1 1 6 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 3 3 3 5 3 4 3 5 4 4 3 3 1 0 0 0 3 2 3 3 2 2 4 3 2 2 2 2 3 2 3 3 2 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 3 2 2 2 1 1 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 2 8 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 -1 -1 0 0 0 0 0 1 1 1 2 4 4 52 2 3 1 9 1 1 1 4 2 1 6 1 1 4 2 4 11 2 0 0 0 0 1 0 .77016 +1 -1 8 9 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 1 1 0 0 0 0 0 1 1 0 0 0 3 2 1 3 3 4 2 3 2 4 4 3 3 0 1 0 0 3 1 2 4 1 2 4 2 2 5 4 1 1 1 4 1 3 0 0 1 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 2 3 2 3 1 1 1 1 1 1 0 1 1 1 1 0 1 1 1 1 1 0 0 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 21 2 3 5 5 3 1 1 1 1 5 11 4 2 1 4 4 11 2 0 0 0 0 1 0 .63024 +6 -1 1 2 1 0 1 1 1 1 1 0 0 0 1 1 1 0 0 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 2 2 2 2 2 2 3 1 2 2 3 2 2 1 0 0 0 3 2 2 5 1 2 1 2 1 5 4 2 2 2 3 4 2 0 1 0 1 0 1 0 0 0 0 1 0 1 0 1 0 0 0 1 1 2 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 0 0 1 0 0 0 2 9 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 7 6 73 1 1 8 8 4 1 1 6 1 8 13 2 1 4 2 2 -1 2 0 0 0 0 1 0 .88135 +1 -1 1 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 3 2 2 2 3 2 3 3 2 2 2 2 2 1 0 0 0 2 3 2 3 2 5 4 2 2 2 2 2 2 1 2 4 2 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 2 2 2 1 1 0 1 1 1 0 1 1 1 1 0 1 1 1 0 0 0 1 1 0 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 3 3 40 2 3 1 7 3 1 1 1 1 1 12 1 1 4 4 1 -1 2 0 0 0 0 1 0 1.53491 +3 -1 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 4 3 4 3 4 2 3 1 1 3 3 3 3 1 0 0 0 3 4 3 3 3 3 3 3 3 3 3 2 3 3 2 3 2 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 2 2 2 2 1 0 1 1 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 37 1 2 4 8 4 1 1 3 2 1 12 1 1 3 1 5 3 1 1 0 1 0 0 0 1.30953 +10 1 1 4 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 1 0 0 0 1 0 0 0 0 2 2 2 2 2 2 4 1 2 3 3 2 3 1 0 0 0 3 4 2 3 2 2 5 2 2 2 4 1 3 2 2 2 2 1 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 7 7 82 2 3 8 8 4 1 1 1 1 8 16 2 1 4 4 1 -1 2 0 0 0 0 1 0 1.1596 +10 1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 3 3 2 4 4 3 4 4 4 3 4 2 2 1 0 0 0 2 4 2 2 2 4 2 3 2 2 4 2 1 1 4 2 2 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 2 2 2 1 1 1 1 1 1 0 1 1 1 1 0 1 1 1 1 0 0 1 1 1 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 3 3 39 2 3 1 7 2 1 1 1 1 1 17 4 2 1 4 3 11 2 0 0 0 0 1 0 1.78056 +1 -1 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 2 3 4 3 4 1 4 3 3 3 3 1 0 0 0 3 4 3 3 1 5 2 4 3 4 4 1 3 1 3 1 1 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 1 2 1 1 0 0 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 1 9 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 5 5 57 1 2 4 3 4 1 1 1 1 4 10 1 1 4 2 3 11 2 0 0 0 0 1 0 .8228 +2 -1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 1 1 0 0 1 1 1 0 0 2 2 2 4 4 4 4 1 2 3 3 1 1 1 0 0 0 1 1 4 4 1 2 4 4 1 5 5 2 2 2 5 1 1 0 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 1 2 1 1 1 0 0 0 0 0 0 1 1 1 1 1 1 0 1 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 65 2 3 8 10 1 1 1 2 1 8 17 1 1 4 2 2 -1 2 0 0 0 0 1 0 .52919 +10 1 6 7 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 3 3 3 2 3 3 3 3 3 3 3 3 3 1 0 0 0 3 3 4 4 2 3 2 3 2 4 4 2 2 2 2 2 2 0 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 1 0 0 0 1 1 1 1 1 2 4 4 52 2 3 9 10 1 1 1 1 2 1 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .89107 +1 -1 1 1 1 0 1 0 0 1 0 1 1 0 1 1 1 0 0 1 0 1 1 1 1 0 1 1 0 1 1 1 0 0 2 2 2 1 2 1 2 1 1 3 3 3 3 1 0 0 0 2 2 2 2 4 2 4 3 3 2 4 3 4 2 2 4 3 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 2 3 5 1 1 0 1 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 2 9 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 7 6 72 1 1 8 2 4 1 1 1 1 8 12 2 1 4 2 2 -1 2 0 0 0 0 1 0 .90291 +1 -1 2 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 4 3 3 2 4 3 4 1 3 3 3 3 3 1 0 0 0 3 4 6 6 6 6 6 6 6 6 6 3 4 2 2 2 3 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 2 1 1 0 0 1 0 0 0 1 0 1 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 45 2 3 2 2 4 1 1 1 1 2 16 1 1 3 5 3 1 1 0 0 0 1 0 0 .93434 +10 2 1 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 0 0 1 1 1 1 0 0 2 3 3 3 4 4 4 3 4 3 3 3 3 1 0 0 0 3 2 2 3 1 5 1 4 1 4 2 1 1 2 2 2 4 0 1 1 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 2 2 4 2 1 0 0 1 0 1 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 51 3 4 11 11 1 1 1 2 2 1 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.11966 +10 10 9 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 3 3 3 4 3 4 3 3 4 4 3 3 0 0 0 1 4 4 4 6 6 6 6 6 6 6 3 2 1 2 4 3 1 0 0 0 0 1 1 1 0 0 0 0 0 1 1 0 1 0 0 1 6 6 4 1 1 0 0 1 1 0 1 1 1 0 0 1 1 1 1 0 0 0 1 0 1 1 0 0 1 9 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 1 1 18 1 2 1 11 3 1 1 10 2 1 16 1 1 3 4 4 1 1 0 0 0 1 0 0 1.50811 +2 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 2 6 2 6 2 3 4 1 2 0 0 1 0 4 4 6 6 6 6 6 6 6 6 3 1 3 1 3 3 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 6 6 6 4 1 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 21 4 6 11 10 2 1 1 2 1 11 16 3 2 3 3 3 2 1 1 1 0 0 0 0 .99689 +9 -1 10 10 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 4 4 3 4 5 3 3 3 4 3 4 4 4 1 0 0 0 4 4 3 3 1 5 2 5 3 5 3 1 1 1 3 1 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 2 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 8 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 71 3 4 8 1 1 1 1 -1 1 8 16 2 1 4 6 1 -1 2 0 0 0 0 1 0 2.29888 +10 10 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 2 3 3 3 3 3 3 2 3 2 3 2 2 1 0 0 0 3 4 2 5 1 3 3 2 2 5 4 1 3 1 3 1 1 0 1 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 2 3 2 1 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 69 2 3 8 1 7 1 1 10 2 8 17 2 1 4 2 3 11 2 0 0 0 0 1 0 1.88919 +2 -1 11 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 2 2 3 4 2 2 2 2 4 4 4 4 0 0 1 0 2 4 3 2 3 3 3 3 3 3 1 2 2 1 2 3 4 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 3 3 3 2 1 0 0 1 0 0 0 1 1 1 1 0 0 0 1 1 0 0 0 1 0 0 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 2 2 2 30 2 3 2 5 5 2 9 2 1 2 16 4 2 3 1 4 2 1 0 1 1 0 0 0 .37104 +9 -1 10 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 3 3 2 2 3 2 2 3 3 3 3 0 0 1 0 2 4 6 6 6 6 6 6 6 6 4 2 1 2 4 4 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 0 0 0 1 0 0 1 0 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 2 2 31 2 3 7 5 5 1 4 -1 1 7 16 4 2 1 4 5 11 2 0 0 0 0 1 0 1.04948 +1 -1 1 9 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 1 0 0 1 1 0 1 0 0 3 3 3 2 3 4 3 2 2 2 3 2 2 1 0 0 0 3 4 2 4 2 3 3 3 3 4 3 1 3 2 2 3 3 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 2 2 1 1 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 44 2 3 2 2 1 1 1 1 2 1 12 1 1 3 1 4 2 1 1 1 0 0 0 0 1.14008 +10 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 2 2 2 5 2 2 2 1 4 4 4 4 1 0 0 0 2 4 3 3 3 3 3 2 3 3 3 3 2 2 3 2 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 32 2 3 5 5 8 2 10 1 2 12 16 4 2 2 2 5 11 2 0 0 0 0 1 0 .36861 +2 -1 1 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 2 3 3 3 1 3 3 3 3 3 1 0 0 0 2 2 2 4 3 3 3 3 3 4 3 2 2 2 3 1 3 0 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 7 6 68 4 6 8 5 7 1 2 2 1 8 16 2 1 4 6 1 -1 2 0 0 0 0 1 0 .9278 +5 -1 5 11 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 3 3 3 4 4 3 3 3 2 3 4 2 2 1 0 0 0 2 1 4 4 1 4 3 2 4 3 3 2 1 2 3 2 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 1 3 1 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 3 5 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 2 2 25 4 6 9 5 2 1 1 5 1 9 1 4 2 3 3 2 1 1 1 0 0 0 0 0 .91719 +11 11 1 5 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 0 0 0 0 1 0 0 0 0 4 3 3 3 3 4 4 2 4 3 3 2 2 1 0 0 0 3 4 3 3 3 3 3 3 3 3 4 1 2 2 3 2 2 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 2 2 2 2 1 1 0 1 0 0 0 1 1 1 1 0 1 1 0 0 0 0 0 0 0 0 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 38 2 3 1 11 4 1 1 11 1 1 13 1 1 3 1 4 2 1 1 0 0 0 0 0 1.4317 +2 -1 5 8 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 1 2 2 2 2 2 1 2 3 3 3 3 1 0 0 0 2 2 2 3 2 4 2 2 4 2 3 2 2 4 2 2 2 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 1 0 1 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 7 6 66 1 2 8 11 5 1 1 2 2 2 9 2 1 4 2 4 11 2 0 0 0 0 1 0 .77059 +10 1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 1 0 1 0 1 1 0 0 0 0 1 2 2 3 2 3 4 1 2 3 3 2 2 1 0 0 0 3 1 4 5 1 4 3 3 2 5 4 1 1 1 4 1 1 1 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 2 2 2 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 72 1 2 8 11 1 1 1 1 1 8 5 2 1 4 6 1 -1 2 0 0 0 0 1 0 .9346 +10 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 2 2 2 1 1 2 1 1 3 3 2 2 1 0 0 0 2 1 1 1 1 1 5 1 3 2 1 1 1 1 2 1 1 0 0 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 67 3 4 8 11 7 1 1 1 1 8 9 2 1 4 2 2 -1 2 0 0 0 0 1 0 .6483 +1 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 2 2 2 3 5 2 5 1 3 4 4 2 2 1 0 0 0 2 1 2 5 1 5 3 1 2 5 3 1 1 1 5 1 4 0 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 2 1 2 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 7 7 83 1 2 8 11 2 1 1 1 1 8 9 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.00934 +6 -1 1 1 1 0 0 1 1 1 1 1 1 0 1 1 0 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 2 1 2 4 1 1 3 3 2 2 0 1 0 0 1 1 4 4 1 2 4 4 1 4 3 2 4 1 3 2 4 1 0 1 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 4 4 5 1 1 1 1 0 0 1 0 1 1 1 1 1 1 1 1 1 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 19 2 3 5 7 3 1 1 6 2 5 1 4 2 1 4 5 11 2 0 0 0 0 1 0 .65346 +10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 4 4 4 5 3 3 3 3 2 4 2 2 1 0 0 0 4 4 3 3 3 3 3 3 3 3 2 2 2 2 3 2 1 0 0 1 0 1 1 0 0 0 0 0 1 1 0 0 0 0 0 1 2 3 3 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 30 3 4 11 7 6 2 12 10 2 1 16 1 1 3 1 3 1 1 1 0 0 0 0 0 .58354 +6 -1 3 6 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 1 0 0 4 4 4 3 5 5 2 5 3 4 4 4 4 1 0 0 0 3 4 3 3 3 5 2 3 3 5 2 3 2 2 3 3 2 0 1 1 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 1 2 2 2 1 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 32 4 6 11 7 6 1 1 6 1 11 16 3 2 3 3 4 3 1 1 0 0 1 0 0 1.31604 +6 -1 1 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 0 2 3 3 4 5 5 5 3 3 4 4 2 4 1 0 0 0 2 2 5 5 1 5 1 4 4 5 4 1 1 2 4 2 1 0 1 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 7 82 2 3 8 7 7 1 1 6 1 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 .78171 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 4 4 3 3 3 3 3 3 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 1 0 0 0 1 1 0 0 0 1 0 0 0 0 1 1 0 0 3 3 3 3 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 1 0 0 3 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 28 3 4 1 7 3 1 4 -1 1 1 16 4 2 1 4 4 11 2 0 0 0 0 1 0 2.10989 +6 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 1 0 1 0 0 1 2 2 4 3 4 4 1 1 3 4 1 1 1 0 0 0 3 2 1 5 1 5 3 5 3 5 3 1 1 2 3 3 1 0 1 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 2 2 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 9 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 74 2 3 8 10 6 1 1 6 1 8 8 2 1 4 2 2 -1 2 0 0 0 0 1 0 .63418 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 3 3 3 3 3 3 2 2 2 3 3 1 0 0 0 4 2 2 3 3 5 3 3 3 4 3 1 2 3 1 3 2 0 0 1 0 1 1 0 0 0 1 0 1 0 0 0 0 0 0 2 2 1 5 1 1 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 55 2 3 1 4 1 1 1 -1 1 1 12 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.59391 +4 -1 3 7 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 1 1 1 1 1 0 1 1 1 0 0 0 0 2 2 2 3 2 2 4 2 2 3 3 2 2 1 0 0 0 2 2 2 4 2 2 5 1 5 2 4 1 2 1 4 4 2 0 1 0 1 0 1 0 0 0 0 1 0 1 0 1 0 0 0 1 1 1 4 1 0 0 1 0 0 0 1 1 1 1 0 1 1 0 0 1 0 0 0 0 1 0 0 0 2 6 3 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 1 1 1 1 6 5 60 3 4 1 6 3 1 1 4 1 1 11 6 -1 4 2 2 -1 2 0 0 0 0 1 0 .75434 +10 10 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 2 2 2 3 3 2 3 2 2 2 3 2 2 1 0 0 0 2 1 2 3 2 2 5 2 5 3 3 2 2 2 2 1 3 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 2 1 3 1 1 0 1 1 0 0 0 1 1 1 1 0 0 0 0 0 1 0 1 0 0 0 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 2 4 4 54 2 3 1 10 6 1 1 10 2 1 13 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.37302 +2 -1 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 2 4 2 2 4 3 4 4 3 3 3 0 0 1 0 4 4 3 4 2 2 2 2 1 4 2 4 3 2 2 3 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 4 3 2 3 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 19 1 2 5 10 1 2 10 2 2 1 17 2 1 1 4 5 11 2 0 0 0 0 1 0 .30039 +10 10 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 3 4 3 2 4 3 4 2 2 3 1 3 2 1 0 0 0 4 4 3 2 3 4 2 2 4 1 2 4 3 4 3 4 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 4 3 2 3 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 40 4 5 7 10 4 2 9 10 2 8 17 2 1 4 4 6 11 2 0 0 0 0 1 0 .59567 +2 -1 1 6 1 0 1 0 0 1 0 1 0 0 0 1 1 0 0 1 0 1 1 1 1 0 1 0 1 1 1 1 0 0 2 3 3 4 2 4 4 1 4 4 4 1 1 1 0 0 0 2 1 3 3 1 3 3 2 2 2 5 1 1 1 4 4 1 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 4 1 1 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 1 4 4 49 2 3 1 10 4 2 9 2 1 1 14 1 1 3 1 5 1 1 0 0 0 1 0 0 .75795 +2 -1 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 4 3 4 2 4 2 4 3 3 2 3 3 0 0 1 0 4 4 4 2 3 2 4 2 3 3 4 2 2 4 2 3 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 2 2 2 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 19 1 2 5 10 3 2 10 2 2 1 17 2 1 3 4 5 1 1 0 0 0 1 0 0 .49025 +10 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 3 2 3 2 3 3 3 3 2 2 2 3 3 1 0 0 0 3 1 3 3 2 5 5 3 4 2 2 2 2 2 2 2 2 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 2 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 80 1 2 8 5 4 1 1 10 1 8 14 2 1 4 6 2 11 2 0 0 0 0 1 0 1.1796 +2 -1 6 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 3 2 3 3 2 4 2 3 3 1 3 2 0 0 1 0 3 3 2 4 4 3 4 2 3 4 2 1 3 4 2 4 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 2 4 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 29 3 4 1 10 1 2 10 2 1 1 17 2 1 3 1 4 2 1 1 1 0 0 0 0 .82424 +10 3 1 6 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 2 2 1 1 2 1 2 1 2 3 3 1 0 0 0 2 3 1 2 2 3 3 3 1 2 2 1 1 3 1 1 3 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 2 2 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 1 0 1 0 1 0 0 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 31 1 2 7 5 4 1 1 3 2 1 16 2 1 1 4 2 11 2 0 0 0 0 1 0 1.50081 +2 -1 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 3 4 3 5 4 2 3 4 4 4 3 1 0 0 0 3 4 3 4 4 2 3 2 2 3 2 3 2 2 4 3 4 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 4 2 3 2 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 38 1 2 11 10 7 2 10 2 2 1 17 2 1 3 1 4 2 1 0 0 0 1 0 0 .45531 +2 -1 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 2 3 1 3 4 3 3 2 4 2 3 1 1 0 0 0 4 4 4 3 3 3 2 1 4 2 4 4 2 3 3 2 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 4 1 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 77 4 5 8 10 7 2 10 2 1 8 17 2 1 4 2 3 11 2 0 0 0 0 1 0 .37313 +2 -1 4 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 4 3 4 3 3 2 4 3 2 3 2 1 0 0 0 4 4 3 4 2 2 2 4 2 1 2 1 2 3 4 2 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 3 4 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 7 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 80 4 5 8 10 7 2 10 2 1 8 17 2 1 4 2 6 11 2 0 0 0 0 1 0 .49611 +2 -1 5 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 3 1 4 2 2 3 1 3 2 3 4 1 0 0 0 3 4 3 2 3 4 3 2 2 3 2 4 4 3 3 3 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 2 2 4 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 65 3 4 8 10 7 2 10 2 1 8 17 2 1 4 2 4 11 2 0 0 0 0 1 0 .27462 +10 10 3 8 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 3 3 3 2 4 4 5 3 1 4 3 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 1 1 1 2 2 2 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 2 1 2 1 1 0 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 34 1 2 1 1 4 1 1 10 2 4 12 2 1 3 1 3 1 1 1 0 0 0 0 0 4.19221 +2 -1 2 6 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 3 3 1 4 2 3 3 2 2 3 2 2 1 0 0 0 3 4 2 2 2 4 2 3 2 4 4 2 2 3 2 2 3 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 7 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 62 4 5 2 11 7 2 10 2 1 2 4 2 1 4 2 2 -1 2 0 0 0 0 1 0 .46691 +9 -1 8 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 1 3 3 4 3 2 3 3 3 3 1 0 0 0 4 4 2 3 3 3 2 3 3 4 4 2 2 2 3 3 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 56 3 4 11 11 7 2 10 -1 2 1 6 1 1 4 2 4 11 2 0 0 0 0 1 0 .46168 +10 10 4 8 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 1 0 0 0 3 3 3 3 3 3 3 2 2 4 4 4 3 1 0 0 0 4 2 2 3 1 3 2 4 1 4 3 1 2 2 4 3 2 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 2 2 2 1 1 0 0 0 0 0 1 1 0 1 0 1 0 1 0 1 0 0 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 21 1 2 5 1 4 1 1 10 2 1 16 6 -1 1 4 4 11 2 0 0 0 0 1 0 3.75422 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1 0 0 0 1 0 0 0 0 2 2 2 3 4 2 4 1 2 2 3 4 4 1 0 0 0 2 2 2 5 1 4 2 4 1 5 4 1 1 4 4 1 5 1 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 0 0 2 1 5 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 4 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 7 7 77 1 1 8 5 5 1 1 1 1 8 10 2 1 4 2 2 -1 2 0 0 0 0 1 0 2.12393 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 4 5 3 4 3 5 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 1 3 2 2 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 60 4 6 10 5 7 1 1 -1 1 10 17 5 2 4 6 1 -1 2 0 0 0 0 1 0 .95626 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 4 1 1 4 1 1 4 4 1 1 1 0 0 0 2 2 2 2 5 2 4 2 4 2 3 1 1 1 2 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 1 1 1 1 3 3 40 2 3 1 3 4 2 14 2 1 1 11 1 1 3 1 5 4 1 1 1 1 1 0 0 .59775 +2 -1 4 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 2 3 2 2 2 2 4 4 3 3 1 0 0 0 3 3 2 3 3 4 4 3 3 2 2 2 2 2 3 2 2 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 3 3 3 2 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 42 2 3 1 3 8 2 14 2 2 1 17 4 2 3 1 4 2 1 0 0 1 0 0 0 .57945 +10 10 8 8 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 4 3 3 2 4 4 4 3 4 4 4 3 3 1 0 0 0 3 4 2 3 3 3 3 4 3 3 3 2 1 2 3 3 3 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 2 2 3 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 32 2 3 1 3 4 1 1 10 1 1 13 1 1 2 2 2 -1 2 0 0 0 0 1 0 1.4663 +10 10 7 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 4 3 4 4 1 2 2 3 2 3 3 3 4 1 0 0 0 3 4 2 3 2 5 2 2 2 2 2 2 2 2 2 2 2 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 37 2 3 1 3 4 2 14 10 1 1 13 1 1 3 1 5 4 1 1 1 1 0 0 0 .88779 +2 -1 2 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 1 1 3 1 1 1 1 1 1 1 1 1 1 0 0 0 1 2 3 3 3 1 4 3 3 3 1 1 1 1 1 3 5 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 3 1 3 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 1 0 1 0 0 1 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 1 1 0 1 1 1 4 4 45 2 3 1 3 4 2 14 2 1 1 9 4 2 3 1 4 2 1 0 0 1 1 0 0 .65176 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 2 3 3 2 2 2 2 2 2 2 2 1 0 0 0 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 2 2 2 1 1 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 4 4 46 1 2 1 3 4 2 14 2 1 1 13 1 1 3 1 5 4 1 0 0 1 1 0 0 .99888 +10 3 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 2 2 3 2 4 1 3 3 3 3 3 0 1 0 0 3 4 3 3 3 3 3 3 3 3 3 3 2 3 2 3 2 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 35 1 2 11 8 4 1 1 3 1 11 17 1 1 3 1 4 2 1 1 0 1 0 0 0 1.30953 +4 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 1 0 0 0 1 0 1 0 0 2 2 4 4 3 3 5 4 2 3 2 2 4 0 1 0 0 1 4 2 5 1 5 1 2 1 5 5 5 2 4 3 5 1 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 2 2 2 4 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 -1 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 42 4 6 11 6 4 1 1 4 1 11 3 4 2 3 3 4 3 1 1 0 1 1 0 0 .47958 +4 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 1 0 1 0 0 4 4 4 4 1 1 1 4 1 4 4 4 4 0 0 0 1 4 4 3 3 3 3 3 3 3 2 1 4 2 1 5 2 1 0 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 5 5 1 1 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 6 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 51 4 6 7 6 9 1 1 4 1 7 1 3 2 3 1 5 3 1 1 0 1 0 0 0 .59828 +9 -1 8 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 5 5 3 3 3 3 4 4 3 3 0 1 0 0 4 3 2 3 2 4 3 3 3 4 3 2 2 2 3 2 2 0 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 3 3 3 2 0 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 26 4 5 1 6 4 1 1 -1 1 1 5 4 2 1 4 1 -1 2 0 0 0 0 1 0 .63489 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 4 4 4 4 5 5 5 5 1 3 4 2 4 1 0 0 0 4 3 4 5 1 5 1 5 2 5 4 1 1 3 3 2 1 1 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 4 2 4 1 1 0 1 1 0 0 1 1 1 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 50 4 5 1 6 6 1 1 -1 1 1 17 3 2 4 4 2 11 2 0 0 0 0 1 0 .58594 +3 -1 6 6 1 1 1 1 1 0 1 1 0 0 0 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 4 1 4 5 5 1 4 4 1 1 0 1 0 0 2 1 5 5 1 5 1 5 1 5 5 1 1 1 3 1 1 0 1 1 1 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 1 1 1 1 0 0 1 0 0 0 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 37 4 6 7 8 4 1 1 3 1 7 16 3 2 1 4 1 -1 2 0 0 0 0 1 0 .99758 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 5 2 2 6 2 2 2 3 4 2 1 0 0 0 4 4 6 6 6 6 6 6 6 6 3 3 2 3 2 2 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 1 0 0 1 0 0 0 1 1 1 1 1 0 0 1 1 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 2 2 31 4 5 2 8 6 1 4 -1 1 2 16 3 2 3 1 3 1 1 0 0 0 1 0 0 .81414 +1 -1 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 3 3 2 2 4 3 3 1 2 2 2 3 3 1 0 0 0 3 4 3 3 3 3 3 3 3 3 4 2 2 2 2 6 3 1 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 3 4 4 3 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 35 2 3 1 8 4 1 1 1 2 1 13 6 -1 3 2 3 1 1 0 1 0 0 0 0 1.36012 +1 -1 1 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 2 2 4 6 4 1 1 4 4 2 2 1 0 0 0 2 1 2 2 2 2 5 2 4 4 4 2 2 1 2 2 5 1 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 3 2 1 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 26 3 4 1 8 5 2 14 1 2 1 5 6 -1 2 2 2 -1 2 0 0 0 0 1 0 .64288 +9 -1 7 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 3 2 5 3 4 4 4 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 5 1 1 4 4 4 5 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 3 3 4 4 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 20 1 2 4 8 3 1 1 -1 2 1 16 6 -1 3 4 4 1 1 0 0 0 1 0 0 1.52526 +4 -1 1 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 1 0 0 1 0 1 0 0 1 2 2 3 5 3 4 1 4 3 3 2 2 1 0 0 0 2 2 1 4 1 4 5 2 2 4 5 1 1 4 3 1 1 0 0 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 1 3 1 1 0 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 64 1 1 8 6 5 1 1 4 1 8 16 2 1 4 6 1 -1 2 0 0 0 0 1 0 .7262 +4 -1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 3 2 2 3 1 2 2 2 3 3 1 0 0 0 4 2 3 3 1 5 2 4 2 4 2 1 2 2 2 3 3 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 2 3 1 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 2 9 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 42 2 3 1 6 1 1 1 4 2 4 16 1 1 4 4 2 11 2 0 0 0 0 1 0 .71821 +10 5 3 3 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 1 1 0 1 0 1 1 1 0 1 1 0 1 0 0 2 2 2 3 3 4 4 3 2 3 3 2 2 1 0 0 0 3 2 4 4 2 4 2 2 2 4 4 2 2 2 3 3 2 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 2 3 3 1 1 0 0 1 0 0 1 1 1 1 0 0 1 1 0 0 0 0 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 54 2 3 1 7 1 1 1 5 1 1 16 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.51999 +9 -1 9 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 4 3 5 3 3 3 3 2 2 2 2 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 3 3 3 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -1 -1 0 0 0 0 0 1 1 1 2 7 7 78 4 5 8 6 6 1 1 -1 2 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 .89382 +2 -1 2 4 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 1 0 0 0 1 0 1 0 0 2 2 2 3 3 2 4 2 2 2 3 2 3 1 0 0 0 3 2 2 4 2 3 2 2 2 4 4 2 2 2 6 4 2 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 2 2 2 1 0 0 1 0 0 0 1 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 2 8 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 6 5 61 3 4 4 7 2 1 1 2 1 4 17 1 1 4 6 1 -1 2 0 0 0 0 1 0 1.17471 +10 10 11 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 4 4 5 2 2 6 2 6 4 4 4 4 1 0 0 0 4 4 3 6 6 6 6 6 6 6 6 2 6 6 6 6 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 6 6 6 3 1 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 36 3 4 11 3 7 2 9 10 2 1 16 4 2 3 1 4 2 1 1 1 0 0 0 0 .46936 +2 -1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 4 1 4 2 1 3 3 2 2 2 1 0 0 0 2 2 4 4 1 4 1 4 1 4 4 1 1 1 4 4 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 3 1 1 1 0 1 0 0 0 1 1 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 2 2 30 2 3 2 3 4 2 14 2 2 1 2 1 1 3 4 3 1 1 0 0 0 1 0 0 .49895 +2 -1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 2 4 2 6 3 2 4 4 4 2 4 1 0 0 0 2 2 3 3 2 3 4 2 2 3 4 2 2 2 6 6 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 6 3 2 2 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 40 4 5 11 3 7 2 14 2 2 1 16 3 2 3 3 4 2 1 0 1 0 1 0 0 .48686 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 4 3 1 5 2 2 2 2 4 4 4 4 0 0 1 0 4 4 6 6 6 6 6 6 6 6 3 1 1 2 2 2 3 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 6 6 2 1 0 0 1 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 2 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 31 2 3 11 3 5 2 9 -1 2 1 16 4 2 3 1 4 2 1 1 1 0 0 0 0 .34251 +10 10 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 2 2 3 1 3 2 2 1 2 2 2 2 2 0 1 0 0 2 2 2 2 3 2 5 2 3 2 3 1 2 2 1 2 3 1 0 1 0 0 0 1 0 0 1 0 1 0 0 0 1 0 0 2 2 2 2 1 1 0 1 0 0 0 1 1 1 1 1 1 1 1 1 0 0 1 1 0 1 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 36 2 3 1 3 4 -1 20 10 1 1 17 1 1 2 2 2 -1 2 0 0 0 0 1 0 1.6797 +10 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 3 4 2 5 5 5 5 3 3 3 3 1 0 0 0 3 4 5 5 5 5 5 5 1 5 5 1 1 1 2 1 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 5 5 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 6 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 59 2 3 1 4 3 1 1 10 1 1 17 5 2 4 2 2 -1 2 0 0 0 0 1 0 1.04032 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 4 2 2 4 5 5 5 5 5 4 4 4 2 1 0 0 0 4 4 5 5 1 5 3 5 5 5 5 1 1 1 5 3 1 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 3 1 5 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 5 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 3 3 42 4 5 2 1 7 1 1 -1 1 2 16 3 2 4 1 5 11 2 0 0 0 0 1 0 2.65466 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 5 5 5 5 5 4 4 4 4 1 0 0 0 4 4 5 5 2 5 1 5 1 5 5 1 1 1 5 1 1 1 0 0 1 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 5 5 5 1 0 0 1 0 0 0 1 1 1 1 0 1 1 1 1 0 0 0 1 0 0 1 0 0 2 7 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 20 4 6 7 4 1 1 1 -1 2 7 16 5 2 1 4 3 11 2 0 0 0 0 1 0 1.19189 +1 -1 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 1 0 1 0 0 0 1 0 0 0 0 3 3 3 3 3 3 4 3 3 3 3 3 3 1 0 0 0 3 2 4 4 2 4 4 3 3 4 3 1 4 2 4 2 3 0 0 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 2 2 2 1 0 1 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 2 9 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 7 6 68 1 2 8 8 3 1 1 1 2 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 .90319 +9 -1 10 2 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 1 0 1 0 1 1 1 1 0 1 0 0 0 0 2 2 2 3 2 2 4 1 2 2 3 3 3 1 0 0 0 3 2 2 3 2 3 3 1 2 4 4 3 1 2 1 1 3 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 1 4 2 1 0 0 1 0 0 0 1 1 1 1 0 0 0 1 0 0 0 0 0 0 1 0 1 0 2 9 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 6 5 63 1 2 8 8 5 2 5 -1 2 2 12 1 1 4 2 2 -1 2 0 0 0 0 1 0 .43145 +10 1 3 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 1 1 1 0 0 1 0 0 1 0 0 3 3 2 3 2 3 4 2 2 3 4 3 3 1 0 0 0 4 4 3 3 2 3 3 3 4 4 4 2 2 2 3 2 4 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 2 2 2 4 1 1 0 0 0 0 0 1 1 1 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 50 2 3 1 7 4 1 1 1 1 1 13 1 1 4 2 4 11 2 0 0 0 0 1 0 2.35786 +2 -1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 1 0 1 1 0 0 0 0 1 2 2 2 3 2 3 1 2 2 2 2 2 1 0 0 0 2 2 2 3 2 3 3 2 3 3 3 3 3 3 2 2 3 1 0 1 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 3 2 3 1 1 0 0 1 0 0 0 1 0 1 1 1 1 0 0 0 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 0 0 0 0 0 0 2 3 3 38 1 2 4 5 5 1 1 2 2 1 12 4 2 3 1 3 1 1 1 0 0 0 0 0 1.12408 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 1 0 0 0 0 3 3 3 3 5 2 4 1 2 3 3 3 3 1 0 0 0 3 2 1 2 1 4 3 2 4 4 2 1 1 1 2 1 1 1 0 0 1 1 0 0 0 0 1 0 1 0 0 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 52 1 2 1 5 6 1 1 1 2 1 14 1 1 4 2 4 11 2 0 0 0 0 1 0 1.46641 +10 10 1 6 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 3 3 4 2 2 4 2 2 2 4 2 2 1 0 0 0 3 2 2 4 2 4 4 2 5 4 3 2 2 4 2 2 2 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 2 1 4 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 27 3 4 11 6 1 1 1 10 2 1 9 2 1 3 1 5 3 1 1 1 1 0 0 0 .49513 +2 -1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 3 2 2 3 2 2 2 2 2 3 1 0 0 0 2 4 2 4 1 2 2 2 1 3 2 1 1 1 1 2 1 1 1 0 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 2 2 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 7 7 77 4 6 8 6 7 1 1 2 1 8 3 2 1 4 6 1 -1 2 0 0 0 0 1 0 .9007 +2 -1 1 1 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 2 2 2 2 2 2 4 4 3 3 1 0 0 0 3 2 2 2 1 2 4 2 2 3 2 2 2 2 3 1 1 1 0 1 0 1 0 0 0 0 1 1 0 0 1 0 0 0 0 2 1 2 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 9 3 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 7 7 82 2 3 8 6 1 1 1 2 1 8 9 2 1 4 6 1 -1 2 0 0 0 0 1 0 .70812 +4 -1 1 10 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 1 1 4 4 4 4 2 4 3 3 3 3 1 0 0 0 4 1 4 5 1 5 5 2 1 5 5 1 4 1 5 4 1 1 0 0 1 0 1 0 0 0 1 0 1 1 0 0 0 0 0 4 4 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -1 -1 1 0 1 0 0 1 1 1 1 7 6 73 2 3 8 6 2 1 1 4 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .26726 +2 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 4 2 2 3 1 3 3 3 3 3 1 0 0 0 2 4 2 3 1 3 1 3 2 5 2 1 1 1 2 2 1 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 7 6 70 4 6 8 6 7 1 1 2 2 8 5 2 1 4 2 2 -1 2 0 0 0 0 1 0 .50678 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 2 3 3 3 3 3 3 3 3 3 2 2 1 0 0 0 2 4 2 3 3 3 1 3 2 3 3 1 1 1 3 3 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 3 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 45 2 3 10 5 4 2 10 2 2 10 16 2 1 3 2 4 1 1 0 0 0 1 0 0 .36756 +10 10 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 3 3 3 3 3 3 3 3 3 3 1 0 0 0 4 4 3 5 1 5 1 3 2 4 3 1 1 1 3 1 3 1 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 2 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 7 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 46 3 4 11 5 7 2 11 10 1 11 16 2 1 3 1 5 2 1 0 0 0 1 0 0 .43048 +2 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 3 3 3 4 5 5 2 3 3 3 4 4 1 0 0 0 4 3 5 5 3 3 2 3 3 5 3 1 1 2 3 3 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 4 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 7 75 4 5 8 5 7 2 10 2 1 8 16 3 2 4 6 1 -1 2 0 0 0 0 1 0 .69287 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 2 3 3 2 3 2 3 4 4 4 4 1 0 0 0 2 2 1 3 1 1 5 2 2 3 3 1 1 2 2 2 1 0 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 1 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 7 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 50 3 4 1 5 7 2 10 2 1 1 16 2 1 4 2 5 11 2 0 0 0 0 1 0 .75449 +2 -1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 4 4 4 4 4 4 3 3 3 3 1 0 0 0 2 2 2 3 1 2 3 2 2 5 4 1 1 1 3 3 1 1 0 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 80 4 5 8 5 7 2 10 2 1 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 .35385 +9 -1 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 3 3 3 4 5 4 3 4 2 3 2 2 1 0 0 0 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 2 3 2 3 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 1 1 18 4 5 5 3 1 2 13 -1 2 4 16 2 1 1 4 3 11 2 0 0 0 0 1 0 .39036 +10 1 2 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 3 2 2 3 3 3 3 1 5 2 4 3 4 1 0 0 0 4 1 5 5 1 5 3 3 1 5 3 1 1 1 5 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 2 1 1 1 0 0 0 0 0 0 1 1 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 7 6 72 2 3 8 1 7 1 1 1 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 1.88919 +1 -1 2 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 2 2 2 2 1 1 2 4 4 1 0 0 0 4 3 5 6 1 3 6 6 5 5 4 1 5 2 2 3 1 1 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 7 6 67 3 4 8 1 7 1 1 1 1 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.54207 +5 -1 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 2 1 3 3 3 3 2 2 2 2 0 0 1 0 2 3 2 4 1 4 3 3 3 3 1 3 1 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 2 2 2 1 0 0 0 0 0 0 1 0 0 1 1 1 0 1 0 0 0 1 0 1 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 -1 0 0 0 0 0 1 1 1 2 7 6 68 1 2 8 7 2 1 1 5 1 8 6 3 2 4 2 2 -1 2 0 0 0 0 1 0 1.46539 +3 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 3 2 4 2 4 4 4 4 4 1 0 0 0 2 2 5 5 5 5 4 5 5 2 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 8 2 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 1 1 23 4 5 1 5 2 1 1 3 2 1 3 3 2 2 2 4 11 2 0 0 0 0 1 0 1.34193 +10 4 9 2 1 0 0 1 0 1 1 0 0 0 0 1 1 0 0 1 1 1 1 1 1 1 0 0 0 1 0 1 0 0 2 2 2 3 3 2 3 2 2 2 3 2 3 1 0 0 0 4 2 2 3 2 4 3 2 3 2 3 1 2 3 2 2 4 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 2 2 2 1 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 1 0 0 1 0 1 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 45 1 2 2 6 5 1 1 4 2 1 13 1 1 3 1 4 2 1 0 0 0 1 0 0 .5571 +3 -1 1 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 2 2 3 4 2 2 1 1 2 3 2 3 1 0 0 0 3 2 3 4 1 4 2 4 1 4 4 1 2 1 4 2 3 0 0 0 1 0 1 0 0 0 1 0 0 1 0 1 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 -1 0 0 0 0 0 1 1 1 1 7 6 66 2 3 8 6 5 1 1 3 1 8 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 .32851 +10 10 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 3 2 3 3 3 3 3 3 3 2 2 3 3 1 0 0 0 3 2 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 3 3 3 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 41 3 4 11 6 1 1 1 10 2 4 17 1 1 3 1 4 1 1 0 0 0 1 0 0 .7604 +9 -1 10 10 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 4 3 4 4 2 2 1 4 1 3 2 4 4 0 0 1 0 4 4 3 3 3 3 3 3 3 3 1 1 1 1 1 1 1 0 1 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 1 1 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 33 4 6 10 6 7 1 1 -1 1 10 1 5 2 1 4 1 -1 2 0 0 0 0 1 0 .42587 +10 1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 3 3 2 2 2 2 2 2 3 3 4 4 1 0 0 0 3 4 3 3 3 3 3 3 3 3 3 2 2 3 2 4 4 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 2 2 2 1 1 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 2 9 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 43 2 3 1 6 3 1 1 1 1 1 9 3 2 4 6 2 11 2 0 0 0 0 1 0 .81903 +5 -1 1 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 2 2 4 1 5 5 1 5 3 2 4 2 1 0 0 0 2 1 5 4 2 2 4 4 4 5 5 1 1 1 5 4 1 0 1 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 4 4 4 1 1 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 1 0 1 0 0 0 0 0 2 4 4 52 3 4 4 5 4 1 1 5 1 4 9 4 2 3 1 3 1 1 0 0 1 0 0 0 .80981 +10 5 2 10 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 1 1 1 0 0 2 4 4 4 5 5 5 5 5 4 4 5 5 0 0 0 1 4 2 5 5 1 5 1 5 1 5 5 1 1 1 4 3 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 2 3 5 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 1 1 0 1 1 0 1 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 46 4 6 11 5 4 -1 20 5 1 11 16 4 2 3 5 4 1 1 0 0 0 1 0 0 .99578 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 4 6 5 5 6 2 4 4 4 4 1 0 0 0 4 2 2 5 1 5 1 5 2 5 5 1 1 1 5 3 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 3 6 6 3 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 -1 7 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 30 4 5 11 5 1 1 1 -1 2 1 17 3 2 3 1 5 3 1 1 0 1 1 0 0 1.07072 +9 -1 10 4 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 0 1 1 1 1 1 1 1 1 1 0 0 0 0 2 2 2 3 2 3 3 4 1 2 3 2 2 0 0 0 1 4 4 3 5 2 2 4 2 3 3 3 1 1 2 3 3 3 1 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 5 5 3 1 1 1 0 1 0 0 0 1 1 1 1 0 1 1 1 1 1 0 0 1 0 1 1 1 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 39 2 3 1 5 5 1 4 -1 1 1 9 4 2 1 4 1 -1 2 0 0 0 0 1 0 1.21989 +10 5 1 6 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 1 0 1 1 1 1 0 0 0 1 0 1 0 0 3 3 3 3 4 2 3 3 2 2 3 3 2 1 0 0 0 4 3 3 4 3 5 3 3 3 4 4 1 1 1 4 1 1 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 2 2 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 1 1 1 0 2 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 51 4 5 1 2 4 1 4 5 1 1 16 1 1 4 4 1 -1 2 0 0 0 0 1 0 1.77174 +2 -1 4 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 2 2 2 2 2 2 3 3 3 3 1 0 0 0 3 3 2 2 2 2 4 2 3 2 3 2 2 2 2 2 4 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 0 2 3 2 2 1 0 0 1 0 0 0 1 1 1 1 1 1 0 1 1 0 0 1 1 0 0 0 0 0 2 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 34 2 3 7 10 2 2 9 2 2 1 17 4 2 2 2 2 -1 2 0 0 0 0 1 0 .40565 +2 -1 3 4 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 2 2 2 2 2 2 2 2 3 3 3 3 1 0 0 0 2 2 2 3 2 2 3 2 2 2 2 2 2 2 2 2 4 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 2 2 2 2 1 0 0 1 0 0 0 1 1 1 1 1 1 0 1 1 0 0 0 1 0 1 0 0 0 2 5 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 3 3 39 4 5 9 10 1 1 1 2 2 7 2 4 2 3 1 5 3 1 1 0 1 1 0 0 .91876 +2 -1 3 4 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 2 2 2 2 2 2 3 3 3 3 1 0 0 0 3 2 2 3 2 2 4 2 3 2 2 2 2 2 2 2 4 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 2 2 2 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 1 1 0 1 1 0 1 0 1 0 1 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 32 4 5 9 10 6 2 10 2 2 1 17 1 1 3 1 5 3 1 1 1 0 1 0 0 .44483 +1 -1 1 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 3 3 3 2 4 3 3 2 3 3 4 3 3 1 0 0 0 3 4 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 1 0 1 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 3 3 4 2 1 1 0 1 0 0 0 1 1 1 1 0 0 0 1 0 0 0 1 1 0 1 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 32 2 3 1 10 3 1 1 1 1 1 17 1 1 3 5 3 2 1 1 1 0 0 0 0 1.21034 +2 -1 1 1 1 1 1 1 1 1 1 1 0 0 0 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 3 2 2 2 2 2 2 3 2 2 1 0 0 0 1 1 2 3 2 4 4 3 2 2 4 2 2 2 2 2 2 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 4 2 4 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 7 6 67 1 2 8 10 4 1 1 2 2 8 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .9051 +10 10 3 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 3 3 3 2 4 3 4 2 3 3 3 3 3 1 0 0 0 3 1 2 4 4 2 4 4 4 3 2 2 2 2 2 2 2 0 1 0 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 2 2 2 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 7 6 65 3 4 8 10 7 2 16 10 1 8 17 7 -1 4 6 6 11 2 0 0 0 0 1 0 .41992 +2 -1 5 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 3 2 2 3 2 2 3 2 3 3 3 1 0 0 0 3 3 3 4 2 2 4 2 3 4 2 2 2 3 2 2 2 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 1 0 0 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 7 76 4 6 8 5 7 1 1 2 1 8 3 5 2 4 6 1 -1 2 0 0 0 0 1 0 1.5962 +2 -1 6 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 5 2 2 3 2 3 4 4 4 3 0 0 1 0 3 4 6 3 3 6 6 4 3 6 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 2 3 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 36 3 4 11 5 7 2 10 2 2 1 3 1 1 3 1 5 3 1 1 1 1 0 0 0 .53876 +10 10 1 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 3 3 2 2 2 3 2 2 3 3 2 2 1 0 0 0 3 4 3 3 3 6 3 3 3 3 3 1 2 1 3 1 1 1 0 1 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 1 2 1 2 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 8 2 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 6 5 64 2 3 8 8 3 1 1 10 1 8 6 2 1 4 4 1 -1 2 0 0 0 0 1 0 .56153 +9 -1 10 10 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 4 2 4 4 1 3 3 3 3 3 4 2 2 1 0 0 0 4 2 3 5 1 5 3 4 3 5 5 1 1 1 5 1 1 0 1 0 1 0 1 0 0 0 0 1 1 0 0 0 1 0 0 1 5 3 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 27 4 5 1 8 2 1 1 -1 2 1 17 1 1 3 1 4 2 1 1 0 1 0 0 0 1.52453 +3 -1 1 1 0 0 0 0 1 0 1 1 0 0 1 0 0 0 0 1 1 1 1 1 0 1 1 0 1 1 1 1 0 0 1 1 1 2 2 1 3 1 1 3 3 2 2 1 0 0 0 4 1 2 3 1 1 4 2 1 4 2 2 4 5 2 4 4 1 0 0 1 1 0 0 0 0 1 0 1 0 1 0 0 0 0 4 3 1 1 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 1 1 0 0 1 0 1 0 0 0 1 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 1 1 23 1 2 1 11 5 2 6 3 1 1 6 4 2 1 4 1 -1 2 0 0 0 0 1 0 .5065 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 3 2 2 4 2 3 3 2 2 3 3 3 3 0 0 1 0 3 3 2 3 2 2 2 2 2 3 4 2 2 2 3 2 3 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 2 2 3 2 1 1 0 1 0 0 0 1 1 1 1 1 1 0 1 1 1 0 0 1 0 1 1 0 0 1 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 2 2 29 1 2 2 11 5 1 4 2 1 2 16 4 2 2 2 2 -1 2 0 0 0 0 1 0 .78538 +10 1 3 5 0 0 0 1 1 1 1 0 0 0 0 1 0 0 0 1 1 0 0 1 0 1 0 0 1 1 0 0 0 0 1 2 2 4 2 3 4 1 1 4 4 1 1 0 0 1 0 3 2 5 5 1 3 3 2 2 4 5 2 1 2 3 1 2 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 1 1 3 1 1 1 0 0 0 1 0 1 1 1 1 0 1 1 1 1 1 0 0 1 0 1 1 1 0 1 3 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 1 1 19 2 3 2 11 3 1 1 1 1 2 1 4 2 1 4 5 11 2 0 0 0 0 1 0 .49588 +1 -1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 2 2 2 5 1 1 4 4 3 3 1 0 0 0 2 1 5 5 1 5 2 3 1 5 5 1 2 2 5 5 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 2 5 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 7 7 82 1 2 8 11 2 1 1 1 1 8 8 2 1 4 2 2 -1 2 0 0 0 0 1 0 .82116 +10 2 1 7 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 0 1 0 0 0 0 2 2 1 2 3 2 4 1 1 3 3 3 3 1 0 0 0 2 2 5 5 1 5 1 5 1 5 4 2 4 1 2 3 1 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 1 2 1 1 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 4 4 54 1 2 2 11 2 1 1 2 2 1 15 2 1 3 1 3 1 1 0 0 0 1 0 0 1.08274 +2 -1 1 1 1 1 0 1 1 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 2 2 1 3 4 3 5 1 1 4 4 2 2 1 0 0 0 3 2 5 5 1 3 5 5 5 5 4 1 1 1 4 1 1 1 0 0 1 0 1 0 0 0 1 0 0 1 0 1 0 0 0 1 2 4 1 1 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 5 5 55 1 2 4 11 5 1 1 2 1 4 13 2 1 4 6 4 11 2 0 0 0 0 1 0 1.22315 +3 -1 2 5 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 0 2 2 2 3 4 2 4 1 2 3 3 2 2 1 0 0 0 4 2 2 2 1 2 4 2 2 4 4 1 1 2 1 1 2 1 1 0 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 2 1 2 2 1 1 0 1 0 0 0 1 1 1 1 1 1 0 1 0 1 0 0 1 0 0 0 0 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 7 6 68 2 3 4 7 4 1 1 3 1 4 13 2 1 4 2 2 -1 2 0 0 0 0 1 0 .86295 +10 1 2 7 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 2 2 2 2 1 4 1 2 3 2 2 2 1 0 0 0 2 2 2 2 1 2 4 2 2 3 2 1 1 1 4 1 1 1 0 1 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 2 2 1 1 1 0 1 1 0 0 0 1 1 1 1 1 1 0 1 1 1 0 1 1 0 1 0 0 0 2 9 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 5 5 55 1 1 11 7 5 1 1 1 2 1 17 2 1 3 1 5 1 1 0 0 0 1 0 0 2.06354 +2 -1 4 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 3 3 3 6 3 3 3 3 3 1 0 0 0 4 3 3 4 3 4 2 3 2 4 6 2 2 3 3 3 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 2 2 3 4 1 1 0 1 0 0 0 1 0 1 1 0 1 0 1 1 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 23 2 3 5 2 3 1 1 2 2 1 16 1 1 3 4 5 1 1 0 0 0 1 0 0 1.22758 +10 2 6 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 4 3 4 4 2 3 4 4 3 3 1 0 0 0 2 1 3 4 1 4 2 4 1 5 4 1 2 2 3 4 1 0 1 0 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 2 2 2 3 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 68 3 4 8 5 1 1 1 2 2 2 6 2 1 4 2 2 -1 2 0 0 0 0 1 0 .70042 +1 -1 1 10 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 2 1 2 3 2 4 2 4 3 2 3 3 3 1 0 0 0 2 2 2 5 1 5 3 1 2 5 4 1 3 2 4 1 1 0 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 2 2 1 2 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 7 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 7 6 70 2 3 8 4 3 1 1 1 1 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 .84466 +10 6 10 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 2 4 3 3 2 2 3 4 3 3 1 0 0 0 4 2 2 4 2 4 2 2 2 4 4 1 1 1 4 1 1 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 1 2 1 2 1 0 0 0 0 0 0 1 0 1 1 0 1 0 1 0 0 0 1 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 6 5 61 2 3 8 4 3 1 1 6 1 8 11 2 1 4 2 3 11 2 0 0 0 0 1 0 .92123 +9 -1 6 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 3 3 3 3 5 3 2 1 2 3 4 4 4 0 0 1 0 4 2 1 5 1 5 5 1 5 1 3 1 1 1 1 3 1 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 3 5 5 2 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 1 0 0 -1 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 24 4 6 7 9 1 1 1 -1 1 7 7 3 2 1 4 1 -1 2 0 0 0 0 1 0 .52449 +2 -1 2 6 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 2 2 2 3 2 2 4 2 2 2 2 2 2 1 0 0 0 3 2 2 4 2 4 2 4 2 4 4 2 3 2 2 2 2 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 2 2 2 2 1 1 0 0 0 0 0 1 1 1 1 0 1 0 1 1 0 0 1 0 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 0 0 0 0 0 0 1 2 2 34 1 2 1 7 5 1 1 2 1 1 17 2 1 3 1 4 2 1 1 0 0 0 0 0 3.04775 +1 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 3 2 2 2 2 1 2 2 2 3 3 1 0 0 0 2 4 3 3 3 3 3 3 3 3 3 1 1 1 2 2 2 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 65 1 2 8 8 2 1 1 1 1 8 16 4 2 4 2 2 -1 2 0 0 0 0 1 0 .58646 +10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 3 5 5 2 2 2 2 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 2 2 1 2 4 2 2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 2 2 3 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 31 2 3 1 8 1 1 1 10 2 1 16 4 2 3 1 4 2 1 1 0 1 0 0 0 1.83859 +8 -1 1 1 1 0 0 0 1 0 1 0 0 0 1 1 0 0 0 1 1 1 1 1 0 1 1 0 1 1 1 1 0 0 1 2 1 3 4 3 5 2 3 2 4 3 4 1 0 0 0 3 1 5 5 1 2 4 5 1 5 5 2 4 3 3 3 2 1 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 3 3 3 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 4 4 46 1 2 1 8 4 1 1 8 1 1 10 1 1 4 6 1 -1 2 0 0 0 0 1 0 1.53031 +3 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 2 2 2 2 3 2 2 1 2 2 2 3 3 1 0 0 0 3 1 1 1 1 2 5 1 4 3 3 1 2 2 2 1 5 0 0 1 1 0 0 1 0 0 0 0 1 1 0 0 0 0 0 2 2 4 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 70 4 6 8 8 4 1 1 3 2 8 5 2 1 4 6 1 -1 2 0 0 0 0 1 0 .97628 +1 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 2 4 3 3 1 3 3 3 4 4 1 0 0 0 3 2 2 3 3 3 4 2 2 2 4 2 2 2 2 2 2 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 4 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 7 85 4 5 8 1 7 1 1 1 1 8 4 2 1 4 4 1 -1 2 0 0 0 0 1 0 2.09519 +2 -1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 4 5 5 5 5 5 4 4 1 2 1 0 0 0 2 4 4 4 1 5 3 4 3 4 4 1 1 1 3 1 1 0 1 1 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 3 2 4 2 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 7 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 33 4 5 2 1 1 1 1 2 1 2 2 5 2 1 4 1 -1 2 0 0 0 0 1 0 2.00389 +10 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 3 4 4 5 4 4 1 3 4 1 1 1 0 0 0 2 2 3 5 2 3 2 2 1 4 2 2 1 2 4 2 1 0 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 2 4 1 4 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 1 1 1 0 0 0 2 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 58 2 3 1 1 3 2 15 10 1 1 9 1 1 4 6 1 -1 2 0 0 0 0 1 0 1.35575 +10 1 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 2 3 2 3 2 3 2 2 2 3 3 3 3 1 0 0 0 3 2 3 4 1 3 4 3 5 5 3 1 2 1 2 1 4 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 2 2 2 1 1 1 0 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 48 1 2 1 1 5 1 1 1 1 1 13 1 1 3 1 5 2 1 0 0 0 1 0 0 3.76666 +1 -1 1 2 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 0 2 2 2 1 2 2 2 1 2 1 2 2 3 1 0 0 0 2 2 2 3 4 2 4 3 4 4 3 1 3 2 1 2 3 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 2 2 1 1 1 1 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 1 0 0 1 9 2 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 3 3 41 3 4 1 1 4 1 1 1 2 1 12 1 1 4 2 2 -1 2 0 0 0 0 1 0 4.144 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 4 4 2 3 3 3 6 2 3 2 4 3 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 4 1 1 1 4 2 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 3 3 3 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 1 0 0 1 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 1 1 24 4 5 1 3 4 2 10 -1 1 1 10 4 2 1 4 5 11 2 0 0 0 0 1 0 .54185 +10 5 1 1 1 0 1 1 1 1 1 0 0 0 0 0 1 0 0 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 1 2 2 2 2 2 3 1 1 3 3 2 2 1 0 0 0 4 2 2 5 1 4 1 2 1 3 4 1 1 1 2 4 2 0 1 0 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 2 2 2 1 1 0 0 1 0 0 0 1 1 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 62 1 2 2 7 5 1 1 5 1 2 17 6 -1 4 2 2 -1 2 0 0 0 0 1 0 .92418 +6 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 1 0 1 0 0 2 2 2 3 3 3 4 2 3 3 4 1 1 1 0 0 0 1 2 4 5 1 4 1 4 1 5 5 1 1 1 3 1 1 0 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 1 2 3 1 1 0 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 36 3 4 4 7 3 1 1 6 1 4 17 1 1 3 1 3 1 1 1 0 0 0 0 0 1.10724 +10 2 1 1 0 0 1 1 1 1 0 0 0 0 1 1 1 0 0 1 0 1 1 1 1 1 1 0 0 1 1 1 0 0 2 2 2 3 2 3 2 1 1 2 3 1 1 1 0 0 0 3 2 2 5 1 2 3 2 1 5 2 1 1 1 2 3 2 0 0 1 1 0 1 0 0 0 0 0 1 1 1 0 0 0 0 1 1 5 1 1 1 0 1 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 -1 -1 0 1 1 0 0 1 1 1 2 4 4 49 3 4 1 7 4 1 1 2 2 1 17 1 1 4 2 3 11 2 0 0 0 0 1 0 1.84962 +1 -1 3 1 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 1 1 1 0 0 2 2 3 2 4 5 5 2 1 2 2 2 2 1 0 0 0 3 2 2 2 1 4 1 2 1 2 2 1 1 1 2 4 4 1 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 51 3 4 1 7 1 1 1 1 1 1 17 1 1 4 6 2 11 2 0 0 0 0 1 0 2.27348 +10 10 6 9 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 3 3 2 3 3 4 3 4 3 3 2 2 0 1 0 0 4 2 4 4 2 4 2 3 4 3 3 1 2 3 2 4 4 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 2 3 4 1 0 0 1 0 1 0 1 1 1 1 0 1 1 1 1 0 0 1 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 23 2 3 7 8 4 1 1 10 2 2 17 6 -1 3 1 3 1 1 0 1 0 0 0 0 .91437 +5 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 4 3 3 4 5 5 5 4 5 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 4 1 4 4 2 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 1 5 5 1 1 1 1 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 51 2 3 7 8 3 1 1 5 2 8 9 1 1 4 2 2 -1 2 0 0 0 0 1 0 .96011 +10 10 1 10 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 1 1 0 1 0 0 0 1 1 0 0 0 2 2 2 1 2 1 4 1 2 1 3 3 3 1 0 0 0 3 1 1 1 2 1 5 2 4 4 5 3 4 3 1 1 5 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 3 1 1 0 0 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 38 1 2 11 8 3 1 1 10 2 1 13 1 1 3 1 4 2 1 1 1 0 0 0 0 1.30953 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 2 4 5 3 5 3 5 4 4 4 4 1 0 0 0 4 2 5 5 1 5 1 5 1 5 5 1 1 1 5 3 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 3 3 5 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 69 3 4 8 10 7 1 1 -1 2 8 5 3 2 4 2 2 -1 2 0 0 0 0 1 0 .77016 +2 -1 1 10 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 2 2 3 1 6 4 3 1 2 3 1 1 1 0 0 0 4 2 2 3 3 1 3 2 3 3 5 1 1 1 2 4 1 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 2 1 3 0 0 0 1 1 0 0 1 1 1 1 0 0 1 1 0 0 0 0 1 0 0 1 0 0 -1 9 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 2 2 26 3 4 11 10 1 1 1 2 1 11 6 3 2 3 3 4 3 1 1 0 1 0 0 0 .78652 +9 -1 9 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 3 2 3 3 3 3 3 3 3 4 4 3 3 1 0 0 0 4 2 2 4 2 2 2 2 2 4 2 1 1 1 2 2 1 1 1 0 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 1 2 5 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 3 5 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 3 3 43 3 4 2 10 4 1 1 -1 2 1 10 1 1 3 1 5 3 1 0 1 1 0 0 0 1.00018 +4 -1 1 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 3 3 2 2 2 2 1 2 3 3 3 3 1 0 0 0 3 2 2 2 1 3 4 2 2 4 3 1 2 2 2 1 4 1 0 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 2 2 2 2 1 0 0 1 0 0 0 1 1 1 1 0 0 0 1 0 0 0 1 0 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 0 0 0 0 0 0 1 4 4 47 1 2 1 6 5 1 1 4 1 1 14 1 1 4 2 2 -1 2 0 0 0 0 1 0 .97642 +2 -1 1 1 1 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 1 1 1 0 0 0 2 2 2 4 2 2 2 2 2 4 4 3 3 1 0 0 0 2 1 2 4 1 2 2 2 2 3 2 1 1 1 1 2 3 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 2 2 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 1 0 1 0 0 0 0 0 1 7 7 77 2 3 8 6 6 1 1 2 1 8 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 .43029 +10 10 1 1 0 1 0 0 1 1 1 0 0 0 0 1 0 0 0 1 1 1 1 1 0 1 1 0 1 1 0 1 0 0 2 2 2 2 2 2 2 2 2 2 3 3 3 1 0 0 0 3 2 2 5 1 5 3 2 2 4 1 4 4 1 1 1 4 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 1 1 1 1 1 0 1 0 0 0 1 1 1 1 1 1 1 1 0 0 0 1 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 30 1 2 1 6 4 1 1 10 2 1 15 1 1 2 2 2 -1 2 0 0 0 0 1 0 .90683 +10 10 3 6 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 1 1 1 0 0 0 3 3 3 3 5 6 3 1 1 4 4 3 3 1 0 0 0 4 4 3 3 3 3 3 3 3 3 6 1 1 1 4 1 1 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 1 1 3 1 1 0 1 0 0 0 1 1 1 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 20 1 2 5 6 3 1 1 10 2 1 16 1 1 1 4 4 11 2 0 0 0 0 1 0 .44849 +10 10 3 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 4 4 4 3 3 3 3 3 3 4 4 4 3 1 0 0 0 4 4 6 6 6 6 6 6 6 6 2 1 2 1 3 2 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 59 2 3 10 5 6 1 1 10 2 1 4 5 2 4 6 2 11 2 0 0 0 0 1 0 .7518 +3 -1 3 7 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 3 3 3 2 2 2 2 2 2 2 2 3 3 1 0 0 0 3 2 2 3 2 3 2 2 2 3 3 1 2 2 2 3 3 0 1 0 1 0 1 0 0 0 0 1 0 1 0 0 0 0 0 2 2 2 3 1 1 0 0 0 0 0 1 1 1 1 1 1 0 1 0 0 0 1 1 0 1 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 32 1 2 4 11 5 1 1 3 2 1 13 1 1 2 2 2 -1 2 0 0 0 0 1 0 1.40627 +1 -1 3 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 2 2 2 3 2 3 1 2 3 3 3 3 1 0 0 0 3 2 4 5 1 5 3 5 1 5 3 2 2 4 2 3 3 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 2 1 1 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 43 2 3 1 11 3 1 1 1 1 1 14 4 2 4 2 2 -1 2 0 0 0 0 1 0 1.09927 +10 10 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 2 4 2 4 2 2 4 4 4 4 0 0 1 0 4 4 3 3 3 3 3 3 3 3 3 2 2 3 2 2 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 3 3 3 3 1 0 0 1 0 0 0 1 1 1 1 0 1 1 0 0 0 0 0 1 0 1 0 0 0 2 8 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 21 2 3 5 11 2 1 1 10 1 5 7 4 2 3 3 2 1 1 1 0 0 0 0 0 .80929 +9 -1 10 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 4 4 4 4 4 2 4 2 2 4 4 2 2 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 2 2 1 2 3 2 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 4 4 4 4 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 48 2 3 9 11 2 1 1 -1 2 1 10 1 1 3 1 3 1 1 0 1 0 0 0 0 .98057 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 3 2 2 3 2 2 3 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 1 2 3 2 3 3 0 0 0 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 2 1 3 3 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 42 4 5 4 11 3 1 1 -1 2 1 16 2 1 4 2 3 11 2 0 0 0 0 1 0 1.41715 +3 -1 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 4 2 3 3 4 3 2 4 3 4 1 0 0 0 3 4 3 3 3 3 3 3 3 3 2 1 1 1 3 4 2 0 1 1 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 1 1 2 4 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 55 4 5 1 11 7 1 1 3 1 1 8 4 2 4 4 1 -1 2 0 0 0 0 1 0 1.01807 +3 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 0 2 3 3 3 4 2 2 2 3 3 3 3 3 1 0 0 0 2 1 4 5 1 4 1 4 1 4 2 1 1 4 2 1 3 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 4 1 1 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 2 9 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 65 4 5 8 8 7 1 1 3 1 8 10 2 1 4 2 2 -1 2 0 0 0 0 1 0 .96882 +1 -1 1 1 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 1 0 0 2 3 3 2 3 4 4 2 4 2 3 2 2 1 0 0 0 1 3 3 3 1 3 3 3 2 4 2 1 2 2 2 2 3 1 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 4 2 4 1 1 1 0 1 1 0 0 1 1 1 1 0 1 0 0 0 0 0 1 0 0 1 0 1 0 2 9 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 6 5 61 1 2 2 8 1 1 1 1 2 1 13 2 1 4 2 2 -1 2 0 0 0 0 1 0 .96166 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 3 3 2 1 1 3 3 3 3 3 1 0 0 0 3 2 2 1 3 1 1 2 3 1 2 2 1 1 2 2 2 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 3 3 3 1 1 0 1 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 4 4 45 2 3 1 3 4 2 14 2 1 1 10 1 1 3 1 4 1 1 0 1 0 0 0 0 .6906 +11 10 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 2 3 3 4 1 2 1 1 3 3 4 4 1 0 0 0 4 3 6 6 6 6 6 6 6 6 6 3 6 6 5 5 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 3 2 3 2 1 1 1 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 1 0 0 0 0 0 1 6 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 2 2 27 4 5 1 3 7 2 11 10 1 1 7 3 2 3 3 5 2 1 0 1 1 0 0 0 .64949 +10 11 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 4 2 3 1 2 3 3 4 4 1 0 0 0 3 4 6 6 6 6 6 6 6 6 4 2 2 4 3 2 2 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 4 3 3 3 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 7 7 76 4 6 8 3 4 1 1 11 1 8 17 2 1 4 4 1 -1 2 0 0 0 0 1 0 1.04138 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 3 3 3 3 3 1 0 0 0 3 4 6 6 6 6 6 6 6 6 4 1 1 3 3 3 3 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 2 2 2 3 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 40 4 5 2 3 3 2 14 2 1 2 9 4 2 4 4 3 11 2 0 0 0 0 1 0 .48686 +2 -1 6 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 2 2 2 2 3 2 2 3 3 1 0 0 0 3 2 2 1 2 2 2 2 1 2 3 1 1 1 1 5 2 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 2 2 2 2 1 1 1 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 3 3 35 4 5 2 3 2 2 6 2 1 2 7 3 2 3 3 5 3 1 0 0 0 1 0 0 .48686 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 4 3 3 3 3 3 5 5 5 5 0 0 1 0 3 4 2 2 2 2 4 2 3 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 6 6 6 2 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 2 3 3 37 4 5 5 3 3 2 14 -1 1 5 4 4 2 3 3 2 1 1 0 0 1 0 0 0 .48686 +10 10 8 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 2 2 2 3 2 2 2 2 3 3 2 2 1 0 0 0 3 3 2 2 3 2 3 2 4 2 2 2 3 4 3 3 4 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 4 2 2 2 1 1 0 1 0 0 0 1 1 1 1 1 1 1 1 1 0 0 1 1 0 1 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 41 2 3 2 3 5 1 4 10 2 1 17 1 1 3 1 4 2 1 1 1 0 0 0 0 1.09915 +2 -1 7 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 3 3 2 4 3 1 0 0 0 3 2 3 3 4 3 4 3 2 3 3 3 2 3 2 2 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 7 6 72 4 5 8 5 7 1 1 2 2 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 .92071 +3 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 2 2 3 4 5 3 2 3 3 4 2 2 2 1 0 0 0 3 3 2 5 2 5 2 2 2 2 2 2 2 2 2 2 1 0 1 1 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 2 2 2 3 1 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 4 4 48 4 5 1 7 2 1 1 3 1 1 16 5 2 3 5 3 2 1 0 0 0 1 0 0 1.53921 +10 3 1 1 1 0 1 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 1 1 1 1 1 0 0 1 0 0 0 0 2 2 2 3 3 2 4 1 2 2 4 2 2 1 0 0 0 3 2 2 5 1 4 2 3 1 5 3 2 2 2 2 2 3 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 2 1 1 0 0 1 0 0 0 1 1 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 7 6 74 1 1 8 11 4 1 1 3 1 8 17 2 1 4 4 1 -1 2 0 0 0 0 1 0 1.10612 +1 -1 1 8 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 2 2 2 3 5 2 4 1 1 3 3 2 2 1 0 0 0 3 3 2 2 1 4 4 2 4 2 1 1 1 2 4 1 1 0 1 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 7 4 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 6 5 60 1 2 8 11 3 1 1 1 2 1 16 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.25457 +1 -1 1 1 1 0 1 1 1 1 1 1 1 0 0 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 3 2 3 2 1 2 2 4 2 2 1 0 0 0 4 1 4 5 1 3 4 4 2 5 5 1 1 1 5 2 3 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 1 0 0 0 1 0 2 9 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 7 7 78 1 1 8 11 6 -1 20 1 1 8 9 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.19458 +2 -1 3 4 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 1 1 0 0 2 3 2 3 5 4 4 2 2 3 4 2 2 1 0 0 0 2 4 2 4 3 2 3 2 2 3 3 2 2 2 4 2 2 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 1 0 0 2 2 2 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 1 1 0 1 1 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 2 1 1 19 2 3 5 11 3 1 1 2 2 2 6 1 1 3 4 5 2 1 1 1 0 0 0 0 1.00877 +2 -1 9 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 1 3 5 3 3 3 3 3 3 4 4 4 0 0 0 1 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 3 3 3 3 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 2 7 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 0 4 5 7 3 1 1 4 2 2 2 16 4 2 1 4 3 11 2 0 0 0 0 1 0 1.71955 +2 -1 5 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 4 3 3 2 3 2 2 2 2 3 3 3 4 0 1 0 0 3 2 2 3 1 2 3 2 2 3 4 2 2 3 3 2 2 1 0 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 2 2 2 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 -1 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 26 3 4 2 3 2 2 14 2 2 1 17 4 2 2 2 2 -1 2 0 0 0 0 1 0 .41679 +10 2 6 6 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 3 3 3 2 2 3 2 3 2 2 3 3 1 1 0 0 2 2 1 2 4 1 3 1 2 2 3 2 2 2 2 3 3 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 2 2 2 2 1 1 0 1 0 0 0 1 1 1 1 0 1 1 0 0 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 41 2 3 4 10 5 2 10 2 1 4 17 1 1 3 1 5 4 1 0 0 1 1 0 0 .2925 +2 -1 1 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 3 2 2 3 1 2 4 1 2 3 2 1 1 1 0 0 0 2 2 1 2 2 2 4 2 4 2 3 2 1 1 4 3 2 1 1 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 3 4 4 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 2 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 1 1 21 3 4 5 3 3 2 14 2 2 1 8 1 1 3 4 4 1 1 0 0 0 1 0 0 .47445 +2 -1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 2 2 3 2 4 2 3 4 3 3 2 2 1 0 0 0 2 2 4 5 2 4 2 4 2 2 4 1 1 1 5 4 1 0 1 1 1 0 0 0 0 0 0 0 1 0 1 0 1 0 0 2 2 2 1 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 2 3 3 42 3 4 1 3 3 2 14 2 2 1 17 3 2 3 1 5 4 1 0 1 1 1 0 0 .82948 +2 -1 1 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 3 4 4 3 4 3 3 2 2 1 0 0 0 2 2 2 2 3 2 3 2 2 2 2 2 3 2 2 3 2 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 4 4 46 2 3 1 3 4 2 14 2 1 1 12 1 1 3 1 3 1 1 0 0 0 1 0 0 .6906 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 3 3 3 3 3 3 3 3 3 1 0 0 0 1 4 3 3 3 3 3 3 3 3 3 1 3 1 3 3 3 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 3 2 2 1 0 0 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 2 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 2 2 34 3 4 11 3 1 1 1 2 2 1 9 4 2 3 1 5 5 1 1 0 1 1 0 0 .95285 +2 -1 3 5 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 3 3 2 2 3 2 4 4 3 3 1 0 0 0 3 4 3 3 3 3 3 3 3 3 2 2 2 1 2 2 2 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 2 3 3 36 3 4 2 3 3 2 14 2 1 2 17 4 2 3 1 4 2 1 0 1 0 1 0 0 .46936 +10 9 10 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 3 3 2 3 3 3 5 2 3 4 4 1 1 1 0 0 0 4 4 3 5 1 5 1 3 3 5 5 1 1 1 5 2 2 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 2 4 1 0 0 0 0 0 0 1 1 1 0 0 1 0 0 1 0 0 1 1 0 0 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 58 1 2 11 4 4 1 1 9 2 1 9 1 1 4 2 3 11 2 0 0 0 0 1 0 1.3165 +2 -1 6 7 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 4 3 2 2 4 2 2 2 3 3 3 0 0 1 0 4 4 2 4 2 3 2 2 4 4 2 2 2 4 3 2 2 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 4 2 2 2 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 7 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 42 4 5 1 10 7 2 10 2 1 1 17 2 1 3 1 5 2 1 0 0 1 1 0 0 .74635 +9 -1 6 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 2 2 4 3 2 2 4 3 2 3 4 4 0 0 1 0 3 4 5 6 3 4 1 5 5 2 3 2 2 3 4 4 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 2 6 6 6 1 0 0 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 25 4 5 1 10 6 1 4 -1 1 1 17 4 2 2 2 4 11 2 0 0 0 0 1 0 1.89207 +10 9 10 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 5 5 5 5 6 6 6 6 6 5 5 5 5 0 0 1 0 3 4 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 6 6 6 6 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 7 77 4 5 8 10 7 2 14 9 1 8 16 2 1 4 6 1 -1 2 0 0 0 0 1 0 .6416 +10 10 11 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 4 3 2 3 2 4 3 3 4 4 2 0 0 1 0 4 4 3 3 3 4 4 2 2 2 4 1 1 2 4 4 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 3 2 2 4 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 20 4 6 7 10 7 2 10 10 2 7 17 2 1 3 4 4 1 1 0 0 0 1 0 0 .53766 +2 -1 5 7 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 2 4 5 3 6 6 6 6 5 5 4 4 0 0 1 0 4 4 6 6 6 6 6 6 6 6 2 4 2 6 3 6 4 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 4 6 6 6 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 30 4 5 2 10 4 2 10 2 2 1 17 2 1 3 1 5 3 1 1 1 0 0 0 0 .43369 +6 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 2 2 4 5 4 5 1 4 4 4 4 4 1 0 0 0 3 1 5 5 1 5 4 4 1 5 5 1 1 1 4 2 1 0 0 1 1 1 0 0 0 0 1 0 1 1 0 0 0 0 0 1 1 5 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 71 3 4 8 7 4 1 1 6 1 8 10 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.05009 +5 -1 3 4 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 1 0 0 0 1 0 0 0 0 2 2 2 3 3 4 4 2 2 3 3 3 3 1 0 0 0 3 2 2 4 2 4 2 3 2 4 4 2 2 2 3 4 2 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 2 2 2 1 1 0 0 1 0 0 1 1 1 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 2 8 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 -1 0 0 0 0 0 1 1 1 1 4 4 51 2 3 1 7 1 1 1 5 2 1 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.72895 +2 -1 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 2 1 3 3 4 4 2 4 3 3 3 3 1 0 0 0 2 2 2 3 2 4 3 3 2 4 4 2 2 2 4 2 2 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 4 1 1 0 0 0 0 0 0 1 1 1 1 0 0 1 0 0 0 0 0 0 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 54 4 6 10 8 6 1 1 2 1 10 16 4 2 4 4 1 -1 2 0 0 0 0 1 0 .75716 +10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 5 6 6 6 6 6 5 5 5 5 1 0 0 0 4 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 6 6 6 6 1 1 0 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 2 2 26 3 4 1 3 1 1 4 10 2 1 9 4 2 3 1 3 1 1 1 0 0 0 0 0 1.43145 +3 -1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 1 4 2 2 3 2 2 2 3 3 1 0 0 0 3 4 6 6 6 6 6 6 6 6 6 2 6 1 1 3 5 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 2 4 4 1 1 1 0 1 0 0 0 1 1 1 0 1 1 0 0 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 1 0 0 1 0 2 2 2 32 1 2 1 3 5 2 9 3 1 1 17 4 2 2 2 2 -1 2 0 0 0 0 1 0 .60549 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 3 1 3 6 2 2 2 3 3 4 4 0 0 1 0 4 4 2 2 6 6 3 3 3 3 3 1 2 2 2 2 4 1 0 0 1 1 0 0 0 0 1 0 0 1 1 0 0 0 0 3 3 3 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 6 5 62 4 6 7 3 7 2 13 -1 1 7 16 4 2 4 2 2 -1 2 0 0 0 0 1 0 .45725 +10 2 4 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 0 2 2 2 2 2 2 2 2 2 3 3 2 2 1 0 0 0 3 2 2 2 3 3 4 2 3 2 3 2 1 1 2 2 3 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 2 4 4 2 1 1 0 1 0 0 0 1 1 0 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 1 1 0 1 1 1 1 4 4 51 1 2 1 3 6 2 5 2 1 1 17 1 1 4 2 2 -1 2 0 0 0 0 1 0 .99888 +10 3 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 1 0 0 0 1 0 0 0 0 3 2 2 2 2 4 2 2 2 3 3 4 3 1 0 0 0 2 2 3 5 1 4 4 2 1 2 4 1 1 5 2 2 3 1 0 1 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 4 2 2 1 1 1 0 1 0 0 0 1 1 1 1 0 1 1 1 1 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 42 2 3 1 3 5 1 1 3 2 1 15 1 1 3 1 3 1 1 0 0 1 0 0 0 1.36654 +2 -1 5 5 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 1 1 0 0 0 3 3 3 3 5 6 4 1 4 3 3 3 3 0 0 1 0 3 4 6 3 6 4 4 6 6 6 4 1 2 2 2 2 1 0 0 1 1 1 0 0 0 0 0 0 0 1 0 1 1 0 0 1 2 2 2 1 1 0 1 0 0 0 1 1 1 1 1 1 0 1 1 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 29 2 3 1 3 4 1 1 2 2 1 17 4 2 2 2 2 -1 2 0 0 0 0 1 0 1.54368 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 3 3 4 3 3 3 3 3 3 0 1 0 0 4 4 5 5 2 5 1 5 1 5 5 1 1 5 3 1 4 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 3 3 3 5 1 0 1 1 0 0 0 1 1 1 1 1 1 0 1 1 0 1 1 1 1 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 33 2 3 1 2 1 1 4 -1 1 1 11 4 2 3 3 2 1 1 1 0 0 0 0 0 1.16775 +11 11 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 3 3 3 3 3 4 4 2 3 3 3 2 2 1 0 0 0 4 4 2 3 2 4 3 3 3 3 3 1 1 1 4 3 1 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 2 3 1 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 5 5 58 4 5 2 2 2 1 1 11 2 1 17 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.33232 +3 -1 6 7 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 2 2 2 2 3 3 3 4 4 4 4 1 0 0 0 3 4 2 2 3 5 4 2 4 2 2 2 3 2 2 3 3 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 5 5 2 3 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 3 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 27 4 5 1 5 1 2 10 3 1 1 16 4 2 2 2 2 -1 2 0 0 0 0 1 0 .70359 +10 2 11 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 3 3 5 3 2 3 3 3 3 4 4 1 0 0 0 3 4 3 3 3 3 3 3 3 3 5 1 3 5 5 3 3 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 3 5 5 5 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 10 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 23 4 5 2 5 1 2 11 2 2 10 16 1 1 1 4 5 11 2 0 0 0 0 1 0 .51152 +2 -1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 2 2 3 6 5 1 2 3 4 2 4 1 0 0 0 1 1 1 1 3 1 2 1 2 2 1 3 1 1 2 5 5 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 -1 0 0 0 0 0 0 0 0 1 5 5 57 3 4 1 5 7 2 10 2 1 1 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 .56367 +10 10 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 3 3 4 5 5 5 5 5 4 4 3 3 1 0 0 0 3 3 5 5 5 1 1 5 1 5 5 1 1 1 5 1 1 0 0 0 1 1 1 0 0 0 1 0 1 0 0 0 0 0 0 3 5 3 2 1 0 0 0 0 0 0 1 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 29 3 4 1 5 3 2 11 10 1 1 16 1 1 3 1 5 3 1 1 0 0 1 0 0 .94314 +10 10 11 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 4 4 3 5 3 3 2 3 4 4 4 4 1 0 0 0 4 4 2 6 6 6 3 2 6 2 6 1 1 1 2 6 2 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 5 5 6 6 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 46 4 5 7 5 7 1 4 10 1 7 16 4 2 4 6 1 -1 2 0 0 0 0 1 0 1.08694 +2 -1 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 3 4 4 4 4 2 4 4 4 4 4 1 0 0 0 3 1 2 4 2 4 3 2 2 4 4 2 2 2 3 2 2 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 6 65 4 5 8 5 7 2 10 2 1 8 16 2 1 4 2 2 -1 2 0 0 0 0 1 0 .27015 +2 -1 4 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 4 3 3 4 4 6 4 2 3 4 4 3 3 1 0 0 0 2 2 6 5 3 4 2 3 1 1 4 1 2 1 3 5 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 64 4 6 8 5 1 1 2 2 1 8 4 2 1 4 6 1 -1 2 0 0 0 0 1 0 .98787 +5 -1 5 5 0 0 0 0 1 0 1 0 0 1 0 1 1 0 0 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 2 2 2 3 2 2 5 2 2 2 2 2 2 1 0 0 0 3 2 3 5 1 2 2 4 1 5 3 1 2 1 3 3 1 1 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 1 2 1 1 0 1 0 0 0 1 1 1 1 1 0 0 1 1 0 1 1 1 0 1 0 0 0 1 7 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 42 2 3 1 5 3 1 1 5 1 1 9 1 1 3 5 3 2 1 0 0 0 1 0 0 1.52057 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 2 2 4 5 5 5 1 5 4 4 1 1 1 0 0 0 4 3 5 5 1 5 1 5 1 5 5 1 1 1 5 1 1 0 0 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 1 1 1 5 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 7 7 75 3 4 8 1 1 1 1 -1 1 8 17 5 2 4 2 2 -1 2 0 0 0 0 1 0 1.95522 +8 -1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 2 2 4 2 4 5 5 1 3 3 1 1 1 0 0 0 2 2 4 5 2 5 3 5 2 5 3 1 1 1 4 3 1 0 1 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 3 3 3 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 1 1 1 0 0 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 2 7 6 65 2 3 8 5 4 1 1 8 2 2 8 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.05472 +9 -1 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 3 3 3 4 6 6 4 5 6 4 4 4 4 1 0 0 0 4 4 6 6 6 6 6 6 6 6 5 1 1 2 6 6 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 6 6 6 6 1 0 0 1 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 1 0 0 0 0 0 3 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 19 4 5 1 5 1 1 4 -1 1 1 17 2 1 1 4 2 11 2 0 0 0 0 1 0 1.3863 +1 -1 2 6 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 2 2 2 3 4 4 3 2 4 3 4 2 4 1 0 0 0 2 2 3 3 2 2 1 2 2 4 4 2 1 2 3 3 1 1 0 1 0 0 1 0 0 0 1 0 1 1 0 0 0 0 0 1 1 4 1 1 0 0 0 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 9 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 79 1 2 8 8 3 1 1 1 1 8 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 .79356 +1 -1 1 1 1 0 1 1 1 1 0 0 0 0 0 0 1 0 0 1 1 1 1 1 1 1 0 0 1 1 1 1 0 0 2 3 2 2 3 3 4 1 2 3 2 2 3 1 0 0 0 3 2 4 5 1 4 2 3 2 5 3 1 1 1 4 4 2 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 1 1 2 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 60 1 2 8 10 4 1 1 1 1 8 5 2 1 4 2 2 -1 2 0 0 0 0 1 0 .88043 +6 -1 1 6 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 2 3 3 3 3 3 2 2 2 2 2 1 0 0 0 2 1 2 3 3 3 3 2 3 4 3 3 4 4 2 3 2 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 2 4 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 24 1 2 1 2 2 1 1 6 2 1 11 1 1 3 1 3 1 1 1 0 0 0 0 0 1.49307 +9 -1 8 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 4 3 2 3 4 4 3 3 1 0 0 0 4 4 3 5 1 5 1 4 1 5 5 1 1 1 2 1 1 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 2 1 3 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -1 -1 0 0 0 0 0 1 1 1 2 7 7 82 4 6 8 1 7 1 1 -1 1 8 16 2 1 4 6 1 -1 2 0 0 0 0 1 0 3.63045 +2 -1 1 1 0 0 1 1 1 0 0 0 0 1 0 0 0 0 0 1 1 1 1 1 0 1 1 1 1 1 1 1 0 0 2 2 2 3 4 2 4 1 2 2 3 3 3 1 0 0 0 3 2 2 4 2 4 5 2 4 2 3 5 4 1 2 5 4 0 1 1 0 1 0 0 0 0 1 1 0 0 1 0 0 0 0 2 2 2 1 1 0 0 1 0 0 0 1 1 1 1 1 1 1 1 1 0 0 0 1 1 1 1 0 0 1 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 1 1 23 2 3 1 5 4 1 4 2 2 1 12 4 2 1 4 4 11 2 0 0 0 0 1 0 1.30676 +10 10 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 1 1 0 0 1 1 1 0 0 0 4 3 3 3 3 2 3 1 2 2 3 3 3 0 0 1 0 3 4 6 6 6 6 6 6 6 6 3 2 2 1 2 3 4 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 3 2 1 1 1 1 0 1 0 1 1 1 1 0 1 1 1 1 1 0 1 1 0 1 1 0 0 3 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 21 2 3 5 5 3 1 1 10 1 5 16 4 2 1 4 5 11 2 0 0 0 0 1 0 .77467 +3 -1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 1 0 0 0 0 1 1 0 0 0 0 3 3 3 3 3 1 2 3 4 3 4 2 3 0 1 0 0 3 2 2 3 2 3 2 2 2 1 3 2 1 1 4 1 2 0 1 1 1 0 0 0 0 0 0 0 1 1 0 0 1 0 0 2 2 3 1 1 1 0 0 0 1 0 1 1 1 1 1 0 1 0 0 1 0 0 1 0 1 0 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 1 1 1 19 2 3 5 5 3 2 10 3 1 5 16 4 2 1 4 4 11 2 0 0 0 0 1 0 .23434 +9 -1 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 3 3 3 2 3 3 2 2 3 3 3 2 2 0 1 0 0 3 4 6 6 6 6 6 6 6 6 3 2 2 2 3 3 2 0 1 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 2 2 3 3 1 1 0 1 0 1 0 1 1 1 0 0 1 1 1 1 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 20 2 3 5 5 3 2 5 -1 1 5 16 4 2 1 4 5 11 2 0 0 0 0 1 0 .27568 +2 -1 2 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 2 2 2 2 2 2 3 4 3 4 1 0 0 0 2 2 2 2 2 2 4 2 3 2 2 2 2 2 2 3 4 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 2 1 2 2 1 1 0 1 0 0 0 0 1 1 1 1 0 0 1 1 0 0 1 1 0 0 0 0 0 1 8 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 1 1 24 2 3 4 10 4 2 10 2 2 1 6 1 1 3 1 4 2 1 1 1 0 0 0 0 .52525 +2 -1 1 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 2 2 2 2 2 2 2 2 3 3 4 4 0 1 0 0 2 3 2 2 2 2 4 2 4 2 3 2 2 2 2 2 2 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 2 2 2 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 1 0 0 0 0 0 2 7 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 23 2 3 1 10 3 2 10 2 1 1 4 1 1 2 1 6 11 2 0 0 0 0 1 0 .78907 +2 -1 4 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 2 2 2 2 2 2 3 3 4 4 1 0 0 0 2 2 2 2 3 2 4 2 2 2 2 2 2 2 2 2 4 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 2 2 1 1 0 1 0 0 0 1 1 1 1 1 1 0 1 1 0 0 1 1 0 0 0 0 0 2 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 34 2 3 1 10 4 2 10 2 1 1 7 4 2 2 2 2 -1 2 0 0 0 0 1 0 .65567 +2 -1 1 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 2 2 3 1 1 5 5 5 4 4 4 4 0 1 0 0 4 4 3 3 3 3 3 3 3 3 5 1 1 1 5 1 1 1 0 1 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 2 2 2 5 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 1 1 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 22 4 5 1 10 2 2 10 2 1 1 4 4 2 1 4 1 -1 2 0 0 0 0 1 0 .52615 +10 2 1 1 0 0 0 1 0 1 1 0 0 0 1 0 0 0 0 1 0 0 1 0 1 1 0 0 0 1 0 0 0 0 2 2 2 3 4 4 3 1 1 4 3 2 3 1 0 0 0 1 2 3 1 1 5 2 2 4 5 1 2 1 1 5 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 7 7 83 2 3 8 2 7 1 1 2 1 8 7 2 1 4 6 1 -1 2 0 0 0 0 1 0 .69088 +1 -1 1 1 1 0 1 0 0 0 0 1 0 0 1 0 1 0 0 1 1 1 1 1 0 0 1 0 0 1 0 1 0 0 1 1 1 2 2 1 1 1 1 2 3 1 1 1 0 0 0 2 1 2 3 1 2 3 4 1 4 3 1 2 3 2 3 3 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 2 1 3 1 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 0 0 1 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 6 5 62 1 2 8 2 3 1 1 1 1 8 10 1 1 4 2 2 -1 2 0 0 0 0 1 0 .69433 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 3 2 4 3 2 1 2 5 5 2 3 1 0 0 0 2 2 2 3 2 4 4 2 2 4 4 2 3 2 2 2 2 1 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 2 2 2 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 5 5 58 1 2 1 5 3 1 1 2 1 1 11 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.5317 +2 -1 6 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 2 4 2 2 3 2 3 2 2 2 2 1 0 0 0 2 1 4 4 1 2 5 4 2 4 4 1 1 1 2 2 2 0 0 1 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 2 2 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 61 2 3 1 10 1 2 16 2 1 1 11 5 2 4 6 1 -1 2 0 0 0 0 1 0 .44283 +2 -1 4 6 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 0 0 1 1 1 0 0 0 2 2 2 3 2 2 1 2 2 3 3 2 2 1 0 0 0 3 4 3 3 2 4 3 2 2 4 4 2 2 2 4 2 2 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 2 2 2 4 1 1 0 1 0 0 0 1 1 1 1 0 0 0 1 0 0 0 1 1 0 0 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 53 2 3 1 10 5 1 1 2 1 1 13 1 1 4 6 3 11 2 0 0 0 0 1 0 1.60188 +2 -1 1 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 1 0 0 2 2 2 2 3 2 2 2 2 2 2 3 3 1 0 0 0 2 2 2 3 2 4 3 2 3 3 4 2 2 2 2 3 3 0 1 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 1 2 2 1 1 0 1 0 0 0 1 1 1 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 4 4 47 2 3 1 10 3 1 1 2 1 1 13 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.60188 +10 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 3 3 3 4 2 6 6 1 6 3 4 2 2 1 0 0 0 3 2 4 4 2 4 2 4 2 4 4 2 2 2 4 4 2 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 4 4 49 1 1 2 9 1 1 1 2 2 1 17 1 1 4 2 5 11 2 0 0 0 0 1 0 .94931 +10 1 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 3 1 4 4 2 1 4 3 3 3 1 0 0 0 3 2 5 5 1 4 4 2 4 5 2 1 1 5 5 5 4 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 1 1 1 1 1 0 1 0 0 0 1 1 1 1 1 1 0 1 1 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 42 1 2 1 9 5 1 1 1 1 1 11 1 1 4 4 2 11 2 0 0 0 0 1 0 1.10583 +3 -1 3 2 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 0 0 0 1 1 0 0 0 0 2 3 2 4 3 2 4 2 2 3 3 2 2 1 0 0 0 3 4 3 6 1 4 4 2 2 4 5 1 2 3 6 5 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 2 5 3 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 0 1 0 1 1 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 19 4 5 5 9 1 1 1 3 2 1 16 1 1 1 4 4 11 2 0 0 0 0 1 0 .52094 +10 1 1 1 0 0 0 1 0 1 1 0 0 0 0 1 1 0 0 1 1 1 0 1 1 1 0 0 1 1 0 1 0 0 2 2 2 3 4 3 2 1 2 3 3 2 2 1 0 0 0 2 2 2 3 1 3 2 3 1 3 4 2 3 1 2 2 3 0 1 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 3 2 5 2 1 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 2 9 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 69 2 3 8 1 4 1 1 1 1 8 8 2 1 4 2 2 -1 2 0 0 0 0 1 0 1.26725 +10 2 4 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 2 4 3 4 2 4 3 3 3 3 1 0 0 0 4 4 3 3 3 3 3 3 3 3 4 4 2 2 4 3 4 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 4 2 3 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 3 2 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 23 4 5 1 9 6 1 1 2 1 1 17 4 2 1 4 1 -1 2 0 0 0 0 1 0 .82934 +9 -1 8 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 3 3 3 2 4 3 2 3 4 3 3 3 3 0 1 0 0 3 3 3 3 2 3 3 3 2 3 3 2 2 2 3 2 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 2 3 3 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 3 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 2 2 28 4 6 7 9 6 1 1 -1 1 7 17 4 2 3 1 4 2 1 0 1 1 0 0 0 .81329 +2 -1 1 1 1 1 1 1 1 0 1 0 1 0 1 0 1 0 0 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 1 1 2 1 1 1 2 1 1 4 4 4 4 1 0 0 0 2 1 5 5 1 2 3 3 3 5 5 1 1 1 3 1 1 0 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 4 3 4 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 4 3 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 4 4 52 4 5 10 5 1 1 1 2 2 1 16 4 2 4 2 2 -1 2 0 0 0 0 1 0 .87278 +9 -1 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 1 2 4 4 4 3 5 4 4 4 4 4 1 0 0 0 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 3 3 3 3 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 4 1 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 19 4 5 1 5 2 2 5 -1 2 1 16 3 2 3 4 5 1 1 0 0 1 0 0 0 .49897 +2 -1 1 6 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 0 0 0 1 0 0 0 0 4 3 4 4 3 3 3 3 3 3 2 2 3 1 0 0 0 3 1 4 4 2 1 5 1 2 5 3 2 1 2 2 2 2 0 1 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 2 2 4 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 22 3 4 7 5 4 1 1 2 2 1 16 4 2 2 2 2 -1 2 0 0 0 0 1 0 1.52655 +5 -1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 2 2 2 2 2 2 2 2 2 3 1 1 0 1 0 0 3 2 3 4 2 2 4 2 2 2 6 3 4 2 2 6 3 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 2 2 2 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 1 0 1 0 1 0 2 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 0 0 0 0 0 0 1 1 1 24 2 3 5 10 3 1 1 5 1 5 17 4 2 1 4 4 11 2 0 0 0 0 1 0 .56493 +9 -1 8 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 2 2 2 2 4 2 4 2 2 2 3 2 2 1 0 0 0 3 2 3 4 1 4 2 2 2 4 2 2 2 2 2 2 4 0 1 1 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 2 2 2 2 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 0 1 0 1 0 0 1 0 0 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 4 4 45 2 3 1 10 4 1 1 -1 1 1 17 1 1 3 1 4 2 1 0 1 0 0 0 0 1.30323 +11 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 2 2 1 2 2 4 1 1 2 2 2 2 1 0 0 0 2 1 4 2 1 4 2 2 2 5 2 1 1 1 1 3 3 0 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 2 2 3 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 9 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 1 1 0 1 1 1 7 6 74 3 4 8 7 3 1 1 1 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 .85431 +2 -1 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 3 4 3 4 2 4 4 4 3 3 1 0 0 0 3 4 3 4 5 4 3 2 2 5 4 2 2 2 3 2 3 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 2 2 3 2 1 0 0 1 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 2 2 34 3 4 1 1 3 1 1 2 1 1 17 3 2 1 4 2 11 2 0 0 0 0 1 0 4.48015 +2 -1 2 3 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 0 2 2 2 3 3 3 3 2 2 3 4 2 3 1 0 0 0 3 2 2 3 3 2 4 2 3 2 3 3 1 3 3 3 3 1 0 0 1 1 0 0 0 0 1 0 0 0 1 1 0 0 0 3 2 2 2 0 0 0 1 0 0 0 1 1 1 0 0 0 0 1 1 0 0 0 1 0 1 0 0 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 1 3 3 36 2 3 2 3 4 2 10 2 1 2 17 2 1 1 4 6 11 2 0 0 0 0 1 0 .29368 +1 -1 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 3 2 2 1 4 1 1 3 3 2 3 1 0 0 0 2 3 6 6 6 6 6 6 6 6 3 1 2 1 1 3 2 1 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 0 1 1 1 1 0 0 0 0 0 1 1 0 1 1 1 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 2 3 3 44 1 1 11 3 4 1 1 1 2 1 17 1 1 3 1 3 1 1 0 1 0 0 0 0 1.53077 +3 -1 1 1 0 0 1 0 0 1 0 0 0 0 1 0 1 0 0 1 1 1 1 0 0 0 0 0 0 1 0 1 0 0 2 2 2 2 2 1 2 1 1 2 2 2 2 1 0 0 0 4 2 2 2 1 2 5 2 4 2 3 2 2 1 3 2 2 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 1 1 1 0 1 0 0 0 1 1 1 1 1 1 0 0 0 1 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 2 5 5 57 2 3 2 7 4 1 1 3 2 1 15 2 1 4 2 5 11 2 0 0 0 0 1 0 1.4817 +1 -1 7 7 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 2 2 4 2 3 3 3 1 2 4 4 2 2 1 0 0 0 4 4 3 3 3 3 4 3 3 3 3 3 2 2 3 3 2 0 0 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 2 3 4 2 1 1 0 1 0 0 0 1 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 24 2 3 1 7 4 2 9 1 2 1 10 1 1 2 2 4 11 2 0 0 0 0 1 0 .79911 +5 -1 1 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 1 0 0 1 1 0 0 0 0 2 3 3 3 6 6 6 2 6 3 3 3 3 1 0 0 0 3 2 6 6 6 6 6 6 6 6 6 2 2 1 6 6 6 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 1 2 2 1 1 1 0 1 0 0 0 1 1 1 1 0 1 0 1 1 0 0 1 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 3 3 38 2 3 1 3 4 1 1 5 1 1 13 1 1 2 2 2 -1 2 0 0 0 0 1 0 1.65123 +10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 5 4 4 4 4 1 0 0 0 4 4 5 4 5 3 3 5 3 4 3 3 3 3 3 3 3 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 2 2 1 5 1 0 0 0 0 0 0 1 1 0 1 1 1 0 1 0 0 0 0 1 0 0 0 0 0 1 8 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 1 1 23 4 5 11 5 7 1 1 10 2 7 3 3 2 1 4 5 11 2 0 0 0 0 1 0 1.29831 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 4 2 3 2 3 3 4 3 4 0 0 1 0 4 1 2 3 3 3 3 3 2 3 3 3 3 4 4 2 2 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 3 3 3 3 1 0 0 0 0 0 0 1 1 1 1 0 1 1 0 0 0 0 0 1 0 1 1 0 0 1 4 2 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 3 3 41 4 5 1 5 1 1 1 2 1 1 4 1 1 3 1 5 3 1 1 1 0 1 0 0 1.58842 +2 -1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 2 2 2 2 2 4 5 4 3 4 4 3 4 0 1 0 0 2 2 3 4 2 5 4 2 3 3 3 3 4 2 2 1 2 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 2 1 1 0 0 1 0 0 0 1 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 9 2 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 1 4 4 45 4 5 1 5 2 1 1 2 1 1 4 4 2 4 2 3 11 2 0 0 0 0 1 0 1.73196 +4 -1 3 4 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 1 1 0 0 1 0 1 0 0 2 2 2 3 3 4 3 1 2 2 3 2 2 0 1 0 0 3 2 2 4 1 3 3 2 2 2 4 1 1 1 3 3 2 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 2 1 2 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 2 7 6 73 4 6 8 9 2 1 1 4 1 8 5 2 1 4 6 1 -1 2 0 0 0 0 1 0 .5734 +2 -1 4 4 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 0 0 1 0 0 0 0 2 2 2 2 2 3 3 2 2 2 1 2 2 1 0 0 0 2 1 2 4 2 3 4 2 2 3 4 1 2 1 2 2 2 1 0 0 1 1 0 0 0 0 1 0 0 1 1 0 0 0 0 2 2 3 2 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 7 7 82 1 2 8 9 5 1 1 2 1 8 3 3 2 4 6 1 -1 2 0 0 0 0 1 0 .45117 +11 11 11 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 3 4 3 3 3 3 3 3 4 4 4 0 1 0 0 6 3 3 5 2 5 3 4 2 4 3 2 2 2 6 3 3 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 3 3 3 1 1 0 0 0 0 0 1 1 0 0 0 1 0 1 1 0 1 0 1 0 0 1 0 0 2 10 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 -1 -1 0 0 0 0 0 1 1 1 1 3 3 37 2 3 1 5 4 -1 20 11 1 1 17 4 2 1 4 1 -1 2 0 0 0 0 1 0 1.18764 +10 2 3 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 2 3 4 3 3 2 3 3 3 3 3 1 0 0 0 4 4 3 3 2 2 2 3 2 2 2 3 2 3 2 3 3 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 2 4 2 2 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 7 6 65 4 5 8 9 6 1 1 2 1 8 17 2 1 4 6 1 -1 2 0 0 0 0 1 0 .66939 +2 -1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 2 2 3 4 4 4 3 4 3 3 2 3 1 0 0 0 3 3 3 3 2 3 2 2 3 4 4 2 2 2 4 2 2 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 3 3 2 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9 2 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 73 3 4 8 9 6 1 1 2 1 8 17 1 1 4 2 2 -1 2 0 0 0 0 1 0 .44399 +1 -1 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 3 3 2 4 3 2 3 3 2 4 3 3 1 0 0 0 3 4 3 3 3 3 3 3 3 3 2 2 2 4 3 2 3 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 2 2 1 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 2 6 5 60 1 2 2 9 6 1 1 1 1 2 17 2 1 4 2 2 -1 2 0 0 0 0 1 0 .8167 +3 -1 4 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 1 1 1 0 0 0 1 0 1 0 0 2 2 2 3 3 3 3 2 2 3 3 2 2 1 0 0 0 3 2 2 3 2 4 4 2 2 4 3 2 2 2 2 2 2 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 2 2 2 2 1 0 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 7 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 2 6 5 63 3 4 2 9 2 1 1 3 1 2 6 1 1 4 2 2 -1 2 0 0 0 0 1 0 .70474 +2 -1 3 6 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 2 3 2 3 2 3 3 3 1 0 0 0 3 1 3 3 2 3 3 2 3 4 3 2 3 2 2 3 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 2 2 3 1 1 1 1 1 1 0 1 1 1 1 0 1 1 1 0 0 0 0 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 3 3 35 1 2 1 9 2 1 1 2 2 1 11 4 2 2 2 2 -1 2 0 0 0 0 1 0 .8637 +10 2 4 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 1 1 0 0 1 1 1 0 0 0 2 2 2 3 2 3 4 2 2 2 3 2 2 1 0 0 0 4 1 3 4 2 3 2 3 2 4 4 1 1 2 3 3 2 1 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 0 2 1 2 2 1 1 1 1 0 0 0 1 1 1 1 1 1 0 1 0 0 0 1 1 0 1 0 0 0 2 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 3 3 35 1 2 1 9 4 1 1 2 1 1 13 4 2 3 1 3 1 1 1 0 0 0 0 0 1.06163 +10 10 4 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 2 2 3 3 3 3 3 2 3 2 3 2 2 1 0 0 0 4 2 2 3 1 4 2 2 2 3 4 1 2 2 4 3 2 1 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 2 2 2 3 1 1 0 0 0 0 0 1 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 2 8 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 -1 0 1 1 0 0 0 0 0 2 4 4 0 1 2 1 9 3 1 1 10 2 1 7 2 1 4 2 3 11 2 0 0 0 0 1 0 .88358 +2 -1 5 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 3 3 3 2 2 2 3 2 3 3 2 3 3 1 0 0 0 3 4 6 6 6 6 6 6 6 1 1 1 1 1 1 1 1 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 5 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 2 2 2 34 4 6 9 3 7 1 1 2 1 9 16 3 2 3 1 3 1 1 0 0 1 0 0 0 .996 +2 -1 4 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 2 2 2 2 2 2 2 2 2 2 2 1 0 0 0 2 2 2 2 2 2 3 2 2 2 3 4 4 4 4 3 4 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 4 4 2 1 1 1 1 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 9 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 1 2 3 3 40 3 4 1 3 2 2 14 2 2 9 9 3 2 3 1 4 2 1 0 0 0 1 0 0 .82948 +1 -1 2 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 3 5 6 6 6 6 6 3 4 4 4 1 0 0 0 4 3 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 5 5 1 1 1 1 1 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 1 0 0 0 0 0 1 9 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 1 0 0 1 0 2 3 3 40 3 4 1 3 4 2 6 1 1 1 10 1 1 4 4 1 -1 2 0 0 0 0 1 0 .87891 +10 2 3 4 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 2 2 3 2 4 3 3 3 2 4 3 3 1 0 0 0 3 2 3 3 3 4 3 2 3 3 3 2 2 3 3 3 3 1 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 3 4 5 2 1 1 0 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 2 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 1 0 0 1 0 1 3 3 35 1 2 1 3 4 2 11 2 1 1 12 1 1 3 1 4 2 1 1 0 0 0 0 0 .59792 +2 -1 3 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 3 3 5 6 3 3 3 3 3 4 3 4 1 0 0 0 4 4 3 3 3 4 3 3 3 2 3 2 2 2 3 3 3 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 2 2 2 4 1 0 1 1 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 2 6 3 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 1 1 0 1 1 1 2 2 28 4 5 1 3 1 2 11 2 1 1 9 3 2 2 2 2 -1 2 0 0 0 0 1 0 .85231 +10 10 2 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 4 3 5 5 5 5 4 4 3 4 1 0 0 0 4 2 5 5 1 5 1 5 1 5 5 1 1 1 5 4 1 0 1 1 0 0 1 0 0 0 0 0 1 1 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 -1 -1 0 0 0 0 0 1 1 1 2 7 6 70 4 5 8 1 7 1 1 10 1 8 17 3 2 4 6 1 -1 2 0 0 0 0 1 0 2.30831 +9 -1 8 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 4 4 5 5 5 5 5 5 4 4 4 4 0 0 1 0 4 4 5 6 5 6 6 6 6 6 6 1 6 6 6 6 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 6 6 6 6 0 1 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 -1 9 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 -1 0 0 0 0 0 0 0 0 1 1 1 23 3 4 1 1 6 1 1 -1 1 1 2 5 2 3 1 4 2 1 1 0 0 0 0 0 2.84823 +11 11 1 2 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 1 3 2 3 5 6 2 6 2 3 1 1 1 0 0 0 1 1 3 5 1 5 5 5 1 5 3 1 1 1 5 3 1 1 1 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 1 3 5 1 1 1 0 0 0 0 0 1 1 1 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 9 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 6 5 61 1 2 1 1 4 1 1 11 1 1 17 1 1 4 2 2 -1 2 0 0 0 0 1 0 3.45887 +10 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 0 0 1 0 0 0 0 3 2 3 3 5 3 2 6 5 2 4 4 4 1 0 0 0 4 2 4 5 1 6 2 4 2 5 6 1 1 1 4 2 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 1 2 3 1 0 0 0 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 1 1 1 7 6 65 3 4 4 1 7 1 1 6 1 4 8 1 1 4 2 2 -1 2 0 0 0 0 1 0 1.94413 diff --git a/data/SN7577_Text.csv b/data/SN7577_Text.csv new file mode 100644 index 00000000..0ac896bb --- /dev/null +++ b/data/SN7577_Text.csv @@ -0,0 +1,1287 @@ +"key_id","Q1","Q2","Q3","Q4","Q5ai","Q5aii","Q5aiii","Q5aiv","Q5av","Q5avi","Q5avii","Q5aviii","Q5aix","Q5ax","Q5axi","Q5axii","Q5axiii","Q5axiv","Q5axv","Q5bi","Q5bii","Q5biii","Q5biv","Q5bv","Q5bvi","Q5bvii","Q5bviii","Q5bix","Q5bx","Q5bxi","Q5bxii","Q5bxiii","Q5bxiv","Q5bxv","Q6","Q7a","Q7b","Q8","Q9","Q10a","Q10b","Q10c","Q10d","Q11a","Q11b","Q12a","Q12b","Q13i","Q13ii","Q13iii","Q13iv","Q14","Q15","Q16a","Q16b","Q16c","Q16d","Q16e","Q16f","Q16g","Q16h","Q17a","Q17b","Q17c","Q17d","Q17e","Q17f","Q17g","Q18ai","Q18aii","Q18aiii","Q18aiv","Q18av","Q18avi","Q18avii","Q18aviii","Q18aix","Q18bi","Q18bii","Q18biii","Q18biv","Q18bv","Q18bvi","Q18bvii","Q18bviii","Q18bix","Q19a","Q19b","Q19c","Q19d","access1","access2","access3","access4","access5","access6","access7","web1","web2","web3","web4","web5","web6","web7","web8","web9","web10","web11","web12","web13","web14","web15","web16","web17","web18","dbroad","intten","netfq","daily1","daily2","daily3","daily4","daily5","daily6","daily7","daily8","daily9","daily10","daily11","daily12","daily13","daily14","daily15","daily16","daily17","daily18","daily19","daily20","daily21","daily22","daily23","daily24","daily25","sunday1","sunday2","sunday3","sunday4","sunday5","sunday6","sunday7","sunday8","sunday9","sunday10","sunday11","sunday12","sunday13","sunday14","sunday15","sunday16","sunday17","sunday18","sunday19","sunday20","press1","press2","broadsheet1","broadsheet2","broadsheet3","popular1","popular2","popular3","popular4","popular5","sex","age","agegroups","numage","class","sgrade","work","gor","qual","ethnic","ethnicity","party","cie","wrkcie","income","tenure","tennet","lstage","maritl","numhhd","numkid","numkid2","numkid31","numkid32","numkid33","numkid34","numkid35","numkid36","wts" +"1","Conservative",NA,"10 (Absolutely certain to vote)","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",64,"C1","C1","RETIRED","SOUTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.11439 +"2","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",25,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.56604 +"3","Undecided","Liberal Democrats (Lib Dem)","9","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Don't know","Tend to disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Strongly disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 2 AND 3 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","65+","75+",90,"C2","C2","RETIRED","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.04468 +"4","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Don't know","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly disagree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",48,"C2","C2","UNEMPLOYED AND SEEKING WORK","WEST MIDLANDS","GCSE/O-LEVEL/CSE","WHITE","WHITE OTHER",NA,"YES","UNEMPLOYED AND SEEKING WORK","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.07592 +"5","Undecided","Labour","5","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 6 AND 12 MONTHS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","45-54","45-54",48,"DE","D","UNEMPLOYED AND SEEKING WORK","LONDON","DON'T KNOW","WHITE","WHITE BRITISH","Labour","YES","UNEMPLOYED AND SEEKING WORK","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.25068 +"6","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",54,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.85126 +"7","Conservative",NA,"10 (Absolutely certain to vote)","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","No","Yes","Yes","Yes","No","Yes","Yes","FEMALE","65+","65-74",74,"AB","B","RETIRED","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.51383 +"8","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly disagree","Strongly disagree","Tend to agree","Strongly agree","Tend to agree","Strongly disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 2 AND 3 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","75+",79,"C2","C2","RETIRED","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.86168 +"9","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",65,"C1","C1","RETIRED","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.48973 +"10","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","60-64","55-64",62,"C2","C2","RETIRED","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.36381 +"11","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Not very much influence","Not very much influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",62,"DE","E","RETIRED","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.37077 +"12","Conservative",NA,"9","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",53,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.0845 +"13","Undecided","Labour","2","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Not very much","Needs a great deal of improvement","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly disagree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","35-44","35-44",41,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","4","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.60022 +"14","Refused","Refused","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","75+",86,"DE","D","RETIRED","EASTERN","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Refused","YES","RETIRED","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.45152 +"15","Conservative",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly disagree","Strongly disagree","Strongly disagree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to disagree","Tend to disagree","Strongly disagree","Tend to disagree","Strongly disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","65+","65-74",69,"C2","C2","RETIRED","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN OTHER","Conservative","NO","RETIRED","O MORE THAN £100,000","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.40854 +"16","Labour",NA,"10 (Absolutely certain to vote)","8","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Neither agree nor disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","No","No","No","No","No","No","FEMALE","65+","65-74",65,"C1","C1","RETIRED","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE IRISH","Labour","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.85808 +"17","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Some influence","No influence at all","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",35,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.65617 +"18","Labour",NA,"9","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to disagree","Don't know","Don't know","Tend to agree","Tend to agree","Some influence","No influence at all","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Don't know","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",52,"DE","E","UNEMPLOYED AND SEEKING WORK","YORKS AND HUMBR","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","UNEMPLOYED AND SEEKING WORK","A UP TO £4,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.01381 +"19","Labour",NA,"5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Not very much influence","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Don't know","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Don't know","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Tend to agree","Tend to agree","Don't know","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",27,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE OTHER","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","F £11,500 - £13,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.17951 +"20","Labour",NA,"8","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Don't know","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Don't know","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",19,"C1","C1","FULL TIME STUDENT","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","FULL TIME STUDENT","B £4,500 - £6,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.80929 +"21","Undecided","Labour","9","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",69,"C2","C2","RETIRED","WEST MIDLANDS","OTHER","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.62783 +"22","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",73,"C1","C1","RETIRED","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","RETIRED","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.65354 +"23","Refused","Refused","7","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Don't know","Don't know","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",50,"C1","C1","SELF-EMPLOYED","LONDON","GCSE/O-LEVEL/CSE","NON-WHITE","BLACK AFRICAN","Refused","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.45708 +"24","Undecided","Conservative","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","Yes","Yes","Yes","No","No","Yes","No","FEMALE","65+","65-74",71,"AB","B","RETIRED","LONDON","OTHER","NON-WHITE","ASIAN OTHER","Conservative","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.47963 +"25","Conservative",NA,"9","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","A great deal","Could be improved in small ways but mainly works well","Strongly disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","No influence at all","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","THE GUARDIAN","THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","No","Yes","Yes","No","No","Yes","No","FEMALE","25-34","25-34",33,"AB","B","NOT WORKING - HOUSEWIFE","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN BANGLADESHI","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.61752 +"26","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 3 AND 4 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",49,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","OTHER","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.35928 +"27","Conservative",NA,"9","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","60-64","55-64",61,"AB","A","RETIRED","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","H £15,500 - £17,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.69181 +"28","Labour",NA,"7","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","75+",81,"C2","C2","RETIRED","LONDON","NO FORMAL QUALIFICATIONS","NON-WHITE","BLACK CARIBBEAN","Labour","NO","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.74933 +"29","Labour",NA,"6","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","No influence at all","No influence at all","Fairly involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","55-59","55-64",57,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - NOT PARENT/GUARDIAN","5+","2","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.61461 +"30","Conservative",NA,"7","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Don't know","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","45-54","45-54",50,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.59242 +"31","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","No influence at all","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",58,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE IRISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.48883 +"32","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Works extremely well and could not be improved","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","BETWEEN 1 AND 2 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",24,"C2","C2","NOT WORKING - HOUSEWIFE","SCOTLAND","OTHER","WHITE","WHITE OTHER",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","4","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.58116 +"33","Undecided","Conservative","5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","No influence at all","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","60-64","55-64",61,"C1","C1","RETIRED","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.36062 +"34","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - but have seen it before then","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","Yes","Yes","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",68,"AB","B","RETIRED","YORKS AND HUMBR","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.14878 +"35","UK Independence Party",NA,"10 (Absolutely certain to vote)","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Some influence","No influence at all","Very involved","Very involved","no Yes - where living now","Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Strongly disagree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",20,"C1","C1","FULL TIME STUDENT","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","UK Independence Party","YES","FULL TIME STUDENT","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.47876 +"36","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","45-54","45-54",53,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE OTHER","Liberal Democrats (Lib Dem)","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","G £13,500 - £15,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.61787 +"37","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","9","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Some influence","Not very much influence","Very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Strongly disagree","Strongly agree","Tend to agree","Tend to disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",61,"AB","B","RETIRED","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","RETIRED","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.83207 +"38","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Not very much influence","Not very much influence","Not at all involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","No","No","No","No","No","No","FEMALE","45-54","45-54",47,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","O MORE THAN £100,000","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.89449 +"39","Undecided","Conservative","5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",58,"C1","C1","UNEMPLOYED AND SEEKING WORK","EASTERN","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","YES","UNEMPLOYED AND SEEKING WORK","O MORE THAN £100,000","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.88061 +"40","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","65+","75+",77,"C1","C1","RETIRED","NORTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","NO","RETIRED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.23795 +"41","Labour",NA,"10 (Absolutely certain to vote)","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved quite a lot","Neither agree nor disagree","Don't know","Tend to disagree","Strongly agree","Strongly agree","Not very much influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","Yes","Yes","Yes","No","No","Yes","No","MALE","60-64","55-64",61,"C1","C1","RETIRED","LONDON","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.68172 +"42","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Needs a great deal of improvement","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","No influence at all","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",67,"C2","C2","RETIRED","LONDON","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.7606 +"43","Undecided","Undecided","2","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Nothing at all","Don't know","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",38,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE OTHER","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.65123 +"44","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","45-54","45-54",52,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.70814 +"45","Labour",NA,"9","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","35-44","35-44",40,"C1","C1","SELF-EMPLOYED","WEST MIDLANDS","MASTERS/PHD OR EQUIVALENT","NON-WHITE","ASIAN PAKISTANI","Labour","YES","SELF-EMPLOYED","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.27605 +"46","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",40,"C2","C2","NOT WORKING - HOUSEWIFE","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.57873 +"47","Undecided","Conservative","10 (Absolutely certain to vote)","5","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",31,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE OTHER","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.68393 +"48","Undecided","Labour","1 (Absolutely certain not to vote)","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","A fair amount","A great deal","Could be improved in small ways but mainly works well","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Not very much influence","Fairly involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",42,"DE","E","REFUSED","WEST MIDLANDS","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN PAKISTANI","Labour","YES","REFUSED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","REFUSED","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.49215 +"49","Labour",NA,"8","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Nothing at all","Could be improved quite a lot","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","No influence at all","Not very involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",33,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","REFUSED","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.05091 +"50","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Don't know","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",34,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","MASTERS/PHD OR EQUIVALENT","NON-WHITE","ASIAN INDIAN","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.67523 +"51","Undecided","Labour","7","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","25-34","25-34",28,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","MASTERS/PHD OR EQUIVALENT","NON-WHITE","ASIAN OTHER","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","H £15,500 - £17,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.47103 +"52","Labour",NA,"9","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 2 AND 3 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",70,"C2","C2","RETIRED","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","F £11,500 - £13,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.31481 +"53","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Needs a great deal of improvement","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","65+","65-74",68,"C2","C2","RETIRED","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","RETIRED","D £7,500 - £9,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.39895 +"54","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",46,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","WALES","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","E £9,500 - £11,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.74151 +"55","Scottish/Welsh Nationalist",NA,"5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",81,"C2","C2","RETIRED","WALES","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","RETIRED","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.56699 +"56","Would not vote",NA,"4","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Not very much influence","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Don't know","Neither agree nor disagree","Don't know","Tend to disagree","Don't know","Don't know","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","18-24","18-24",19,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.05512 +"57","Conservative",NA,"9","9","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",69,"AB","B","SELF-EMPLOYED","EASTERN","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Conservative","YES","SELF-EMPLOYED","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.62067 +"58","Undecided","Conservative","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",48,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SOUTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.3116 +"59","Undecided","Liberal Democrats (Lib Dem)","4","5","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Tend to disagree","Strongly disagree","No influence at all","No influence at all","Very involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Tend to disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","LESS THAN 3 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",32,"DE","D","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","WALES","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","G £13,500 - £15,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.56251 +"60","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 4 AND 5 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",25,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.63793 +"61","Undecided","Labour","3","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A great deal","A great deal","Could be improved in small ways but mainly works well","Strongly disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","Yes","Yes","No","No","No","No","No","MALE","65+","65-74",73,"AB","B","RETIRED","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.62692 +"62","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A great deal","A great deal","Works extremely well and could not be improved","Tend to disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","No influence at all","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Strongly agree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","65+","65-74",70,"AB","B","RETIRED","YORKS AND HUMBR","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.62692 +"63","Undecided","Labour","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",72,"C1","C1","RETIRED","EASTERN","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.04549 +"64","Undecided","Undecided","7","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","35-44","35-44",35,"C1","C1","SELF-EMPLOYED","EASTERN","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.92752 +"65","UK Independence Party",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","No influence at all","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",66,"DE","E","RETIRED","EASTERN","DON'T KNOW","WHITE","WHITE BRITISH","UK Independence Party","YES","RETIRED","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.64943 +"66","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Don't know","Neither agree nor disagree","Tend to agree","Tend to agree","No influence at all","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Don't know","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",67,"C2","C2","RETIRED","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.27646 +"67","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",48,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.54608 +"68","Refused","Liberal Democrats (Lib Dem)","5","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly disagree","Neither agree nor disagree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","Yes","Yes","Yes","No","No","Yes","No","FEMALE","35-44","35-44",41,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Liberal Democrats (Lib Dem)","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.57945 +"69","Refused","Refused","10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","No influence at all","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","25-34","25-34",34,"C1","C1","NOT WORKING - HOUSEWIFE","LONDON","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Refused","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OTHER",NA,"FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.97605 +"70","Refused","Refused","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","35-44","35-44",41,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","MASTERS/PHD OR EQUIVALENT","NON-WHITE","ASIAN INDIAN","Refused","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.47955 +"71","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","65+","75+",75,"C2","C2","RETIRED","LONDON","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN INDIAN","Liberal Democrats (Lib Dem)","YES","RETIRED","DON'T KNOW","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.35859 +"72","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Don't know","Tend to agree","Neither agree nor disagree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Don't know","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Don't know","Strongly agree","Strongly agree","Don't know","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",34,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","WEST MIDLANDS","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.9903 +"73","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",64,"C1","C1","RETIRED","WEST MIDLANDS","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.11686 +"74","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",44,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.63154 +"75","Undecided","UK Independence Party","10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Needs a great deal of improvement","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","Yes","No","Yes","Yes","Yes","No","Yes","Yes","MALE","65+","65-74",68,"C2","C2","NOT IN PAID WORK FOR OTHER REASON","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","UK Independence Party","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","F £11,500 - £13,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.82697 +"76","Undecided","Conservative","6","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","75+",82,"C2","C2","RETIRED","SOUTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.37545 +"77","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Very interested","A fair amount","A fair amount","Works extremely well and could not be improved","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Some influence","Fairly involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Very strong","No - but have seen it before then","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","18-24","18-24",18,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EAST MIDLANDS","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.87703 +"78","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Don't know","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",21,"C1","C1","FULL TIME STUDENT","EAST MIDLANDS","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","NO","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.87552 +"79","Undecided","Labour","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Don't know","Tend to agree","Strongly disagree","Tend to agree","Don't know","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",43,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EAST MIDLANDS","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",4.144 +"80","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",31,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EAST MIDLANDS","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",3.68173 +"81","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Works extremely well and could not be improved","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Some influence","Some influence","Very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","45-54","45-54",47,"DE","D","UNEMPLOYED AND SEEKING WORK","SOUTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","UNEMPLOYED AND SEEKING WORK","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.61117 +"82","UK Independence Party",NA,"10 (Absolutely certain to vote)","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","60-64","55-64",64,"C2","C2","RETIRED","SOUTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","UK Independence Party","YES","RETIRED","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.39088 +"83","Undecided","Labour","10 (Absolutely certain to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Strongly disagree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Strongly agree","Strongly agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","45-54","45-54",49,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.51999 +"84","Labour",NA,"10 (Absolutely certain to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","65+","75+",92,"C2","C2","RETIRED","SOUTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","C £6,500 - £7,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.95123 +"85","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","NO","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",65,"DE","E","RETIRED","SOUTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","G £13,500 - £15,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.09545 +"86","Would not vote",NA,"3","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Nothing at all","Nothing at all","Could be improved in small ways but mainly works well","Tend to agree","Tend to disagree","Strongly disagree","Tend to disagree","Strongly disagree","No influence at all","Some influence","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","no No","Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to disagree","Strongly disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","18-24","18-24",18,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","OTHER","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.41597 +"87","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","Not very much","A fair amount","Needs a great deal of improvement","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",73,"C1","C1","RETIRED","EASTERN","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.64833 +"88","Other",NA,"10 (Absolutely certain to vote)","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",48,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","EASTERN","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Other","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.13697 +"89","UK Independence Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Tend to disagree","A great deal of influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",64,"C1","C1","RETIRED","EASTERN","GCSE/O-LEVEL/CSE","NON-WHITE","OTHER","UK Independence Party","NO","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.36622 +"90","Conservative",NA,"8","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Nothing at all","Could be improved quite a lot","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","35-44","35-44",44,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",2.16451 +"91","Undecided","Undecided","9","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","A fair amount","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Some influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Don't know","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","THE DAILY TELEGRAPH","THE GUARDIAN","THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","No","Yes","Yes","Yes","No","Yes","Yes","FEMALE","65+","75+",85,"C1","C1","SELF-EMPLOYED","SOUTH EAST","DON'T KNOW","WHITE","WHITE BRITISH","Undecided","YES","SELF-EMPLOYED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.86015 +"92","Conservative",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Strongly disagree","Strongly disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","No influence at all","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Tend to disagree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","MALE","55-59","55-64",58,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","OTHER","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.16431 +"93","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","No influence at all","No influence at all","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",18,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.46938 +"94","Undecided","Scottish/Welsh Nationalist","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Some influence","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",60,"C1","C1","RETIRED","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","RETIRED","C £6,500 - £7,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.36062 +"95","Undecided","Undecided","10 (Absolutely certain to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","A great deal of influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Don't know","Don't know","Don't know","Don't know","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",19,"C1","C1","NOT WORKING - HOUSEWIFE","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Undecided","YES","NOT WORKING - HOUSEWIFE","DON'T KNOW","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","2","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.40598 +"96","Labour",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","A fair amount","Needs a great deal of improvement","Tend to disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 1 AND 2 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",48,"DE","E","UNEMPLOYED AND SEEKING WORK","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","UNEMPLOYED AND SEEKING WORK","B £4,500 - £6,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.47937 +"97","Undecided","Undecided","5","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","FEMALE","45-54","45-54",49,"DE","D","HAVE PAID JOB - PART TIME (UNDER 8 HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - PART TIME (UNDER 8 HOURS PER WEEK)","C £6,500 - £7,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.39004 +"98","Conservative",NA,"10 (Absolutely certain to vote)","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Tend to agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",41,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN INDIAN","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.59953 +"99","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Some influence","Not very much influence","Very involved","Don't know","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",87,"AB","B","RETIRED","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.09183 +"100","Undecided","Undecided","3","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly disagree","Tend to agree","Strongly disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",20,"C2","C2","UNEMPLOYED AND SEEKING WORK","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.88403 +"101","Scottish/Welsh Nationalist",NA,"7","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","45-54","45-54",53,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.82978 +"102","Undecided","Undecided","9","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A great deal","Works extremely well and could not be improved","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","A great deal of influence","A great deal of influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly disagree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"DON'T KNOW","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","45-54","45-54",0,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.57863 +"103","Labour",NA,"9","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Strongly disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",52,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.57863 +"104","Conservative",NA,"10 (Absolutely certain to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","55-59","55-64",55,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.82521 +"105","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",20,"DE","D","UNEMPLOYED AND SEEKING WORK","SCOTLAND","OTHER","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.47522 +"106","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","60-64","55-64",64,"C1","C1","RETIRED","SCOTLAND","OTHER","WHITE","WHITE BRITISH","Undecided","NO","RETIRED","E £9,500 - £11,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.42422 +"107","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly agree","Strongly disagree","Strongly agree","Tend to agree","Tend to disagree","Strongly disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",65,"C2","C2","RETIRED","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","E £9,500 - £11,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","REFUSED","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.32522 +"108","Undecided","Labour","10 (Absolutely certain to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","Yes","Yes","Yes","Yes","Yes","Yes","Yes","MALE","55-59","55-64",56,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.61991 +"109","Refused","Refused","9","8","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly disagree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","55-59","55-64",55,"AB","A","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Refused","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.35148 +"110","Undecided","Undecided","5","5","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Some influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","25-34","25-34",34,"C2","C2","SELF-EMPLOYED","EASTERN","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","YES","SELF-EMPLOYED","I £17,500 - £24,999","RENTED FROM LOCAL AUTHORITY","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.46979 +"111","Conservative",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","A great deal of influence","Not very much influence","Very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","FEMALE","18-24","18-24",20,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","GCSE/O-LEVEL/CSE","NON-WHITE","MIXED WHITE AND ASIAN","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.26348 +"112","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","Not very much","Could be improved quite a lot","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","35-44","35-44",41,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","WID/DIV/SEP - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.82016 +"113","Would not vote",NA,"6","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",20,"C2","C2","FULL TIME STUDENT","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","REFUSED",NA,"SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.63013 +"114","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",65,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","NORTH WEST","OTHER","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","C £6,500 - £7,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.70042 +"115","Labour",NA,"10 (Absolutely certain to vote)","4","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","Yes","Yes","No","No","No","No","No","MALE","65+","65-74",70,"AB","B","RETIRED","SOUTH EAST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","YES","RETIRED","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.01546 +"116","Conservative",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","No influence at all","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",45,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",2.19851 +"117","Conservative",NA,"9","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",46,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN OTHER","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.79311 +"118","Undecided","Labour","10 (Absolutely certain to vote)","Don't know","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Strongly agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Some influence","A great deal of influence","Fairly involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","35-44","35-44",37,"C1","C1","NOT WORKING - HOUSEWIFE","LONDON","NO FORMAL QUALIFICATIONS","NON-WHITE","BLACK OTHER","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","F £11,500 - £13,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","4","YES","no AGED 0-3","AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.45375 +"119","Labour",NA,"7","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Neither agree nor disagree","Don't know","Don't know","Don't know","Don't know","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","18-24","18-24",18,"C2","C2","FULL TIME STUDENT","LONDON","GCSE/O-LEVEL/CSE","NON-WHITE","BLACK AFRICAN","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.36429 +"120","Undecided","Undecided","Don't know","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Don't know","Tend to agree","Don't know","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Not very involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Don't know","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Don't know","Don't know","Don't know","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","FEMALE","18-24","18-24",23,"C2","C2","FULL TIME STUDENT","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN OTHER","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.50538 +"121","Undecided","Undecided","5","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Tend to agree","Tend to disagree","Don't know","Don't know","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","45-54","45-54",54,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","NON-WHITE","BLACK CARIBBEAN","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.03295 +"122","Undecided","Undecided","7","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Don't know","Don't know","Don't know","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Don't know","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"DON'T KNOW","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",70,"C1","C1","RETIRED","LONDON","GCSE/O-LEVEL/CSE","NON-WHITE","BLACK CARIBBEAN","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","5+","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.39455 +"123","Undecided","Undecided","3","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Neither agree nor disagree","Don't know","Tend to agree","Don't know","Tend to agree","Don't know","Tend to agree","Don't know","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",23,"C1","C1","FULL TIME STUDENT","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE OTHER","Undecided","YES","FULL TIME STUDENT","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.49588 +"124","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","75+",86,"DE","D","RETIRED","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","D £7,500 - £9,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.72481 +"125","Refused","Refused","8","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly agree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Tend to disagree","Strongly disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",47,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Refused","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.08858 +"126","Labour",NA,"4","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Don't know","Not very much influence","No influence at all","Not very involved","Not at all involved","no Yes - where living now","Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 3 AND 6 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",20,"C1","C1","FULL TIME STUDENT","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","FULL TIME STUDENT","G £13,500 - £15,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.95204 +"127","Labour",NA,"9","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Strongly disagree","Don't know","Tend to agree","No influence at all","No influence at all","Fairly involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 6 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",21,"C1","C1","FULL TIME STUDENT","YORKS AND HUMBR","STILL STUDYING","WHITE","WHITE BRITISH","Labour","YES","FULL TIME STUDENT","G £13,500 - £15,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.80929 +"128","Conservative",NA,"2","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Strongly disagree","Tend to agree","Strongly disagree","Strongly agree","Don't know","No influence at all","No influence at all","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 3 AND 6 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",19,"C1","C1","FULL TIME STUDENT","YORKS AND HUMBR","STILL STUDYING","WHITE","WHITE BRITISH","Conservative","YES","FULL TIME STUDENT","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.49588 +"129","Undecided","Undecided","3","3","no Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Don't know","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",24,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","MIXED WHITE AND ASIAN","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.60458 +"130","Labour",NA,"7","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","A great deal of influence","Not very much influence","Fairly involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",19,"C1","C1","FULL TIME STUDENT","SOUTH WEST","STILL STUDYING","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","REFUSED",NA,"FAMILY","SINGLE - NOT PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.59733 +"131","Undecided","Would not vote","1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Don't know","Don't know","Don't know","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",28,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN PAKISTANI","Would not vote","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.41625 +"132","Would not vote",NA,"10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","A fair amount","A fair amount","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Not very much influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 2 AND 3 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","25-34","25-34",27,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE OTHER",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.9485 +"133","Labour",NA,"10 (Absolutely certain to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A great deal","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Some influence","Some influence","Very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","Yes","Yes","Yes","MALE","18-24","18-24",18,"DE","D","FULL TIME STUDENT","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","MIXED WHITE/BLACK CARIBBEAN","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.33183 +"134","Conservative",NA,"6","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Tend to disagree","Don't know","Don't know","Tend to disagree","Tend to disagree","Don't know","Tend to disagree","Tend to disagree","Tend to disagree","Don't know","Tend to disagree","Don't know","Tend to disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Don't know","Don't know","Don't know","Don't know","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",19,"C1","C1","FULL TIME STUDENT","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","SINGLE - NOT PARENT/GUARDIAN","4","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.38013 +"135","Undecided","Liberal Democrats (Lib Dem)","5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",40,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Liberal Democrats (Lib Dem)","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.58278 +"136","Labour",NA,"10 (Absolutely certain to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","45-54","45-54",51,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH EAST","OTHER","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",2.5962 +"137","Labour",NA,"4","3","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","A fair amount","Needs a great deal of improvement","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",43,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",2.33094 +"138","Undecided","Undecided","9","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",44,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.84666 +"139","Undecided","Undecided","5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Not very much","Could be improved quite a lot","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",68,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","WEST MIDLANDS","OTHER","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.77171 +"140","Undecided","Undecided","5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",46,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","OTHER","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.31432 +"141","Undecided","Undecided","10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","No influence at all","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","FEMALE","55-59","55-64",57,"C1","C1","RETIRED","WEST MIDLANDS","OTHER","WHITE","WHITE BRITISH","Undecided","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.08889 +"142","Would not vote",NA,"1 (Absolutely certain not to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",44,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.82505 +"143","Conservative",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","75+",78,"AB","B","RETIRED","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.02135 +"144","Conservative",NA,"9","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","18-24","18-24",20,"C2","C2","FULL TIME STUDENT","EASTERN","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.99009 +"145","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",33,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","2","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.1681 +"146","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved in small ways but mainly works well","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Not very much influence","Some influence","Fairly involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","35-44","35-44",38,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.97656 +"147","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","5","Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A great deal","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","55-59","55-64",55,"C1","C1","SELF-EMPLOYED","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN OTHER","Liberal Democrats (Lib Dem)","YES","SELF-EMPLOYED","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.44512 +"148","Refused","Refused","1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A great deal","A great deal","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","No influence at all","No influence at all","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",49,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","BLACK CARIBBEAN","Refused","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.84886 +"149","Would not vote",NA,"5","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Some influence","Some influence","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","18-24","18-24",24,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE OTHER",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","F £11,500 - £13,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.23875 +"150","Labour",NA,"6","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","FEMALE","25-34","25-34",33,"DE","E","NOT IN PAID WORK FOR OTHER REASON","LONDON","NO FORMAL QUALIFICATIONS","NON-WHITE","BLACK AFRICAN","Labour","NO","NOT IN PAID WORK FOR OTHER REASON","B £4,500 - £6,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","4","3","YES","AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.43567 +"151","Conservative",NA,"10 (Absolutely certain to vote)","9","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to disagree","Tend to disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",52,"AB","B","SELF-EMPLOYED","SOUTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","YES","SELF-EMPLOYED","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.20621 +"152","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Needs a great deal of improvement","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","55-59","55-64",57,"DE","E","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","EASTERN","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","NON-WHITE","BLACK CARIBBEAN","Labour","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.47778 +"153","Labour",NA,"10 (Absolutely certain to vote)","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Strongly disagree","Strongly disagree","Tend to disagree","Strongly disagree","Not very much influence","Not very much influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",29,"AB","A","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","MASTERS/PHD OR EQUIVALENT","NON-WHITE","ASIAN BANGLADESHI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.98914 +"154","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 4 AND 5 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","55-59","55-64",58,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","EASTERN","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.72613 +"155","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Tend to disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",52,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.66725 +"156","Undecided","Conservative","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","MALE","65+","65-74",69,"C2","C2","RETIRED","EASTERN","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.78892 +"157","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - have never seen it","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Don't know","Tend to agree","Tend to agree","Don't know","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","60-64","55-64",64,"AB","B","RETIRED","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.21096 +"158","Undecided","Liberal Democrats (Lib Dem)","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",47,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.57929 +"159","UK Independence Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","55-59","55-64",55,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","UK Independence Party","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.14997 +"160","Would not vote",NA,"2","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly disagree","Tend to disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",29,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE OTHER",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.58829 +"161","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","A great deal of influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",47,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.05421 +"162","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Strongly disagree","Strongly agree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","45-54","45-54",53,"C1","C1","UNEMPLOYED AND SEEKING WORK","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","UNEMPLOYED AND SEEKING WORK","C £6,500 - £7,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.39984 +"163","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Nothing at all","Could be improved quite a lot","Strongly disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 3 AND 4 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","75+",77,"AB","B","RETIRED","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.83326 +"164","Labour",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","75+",76,"DE","D","RETIRED","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.44187 +"165","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Nothing at all","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",49,"DE","D","NOT IN PAID WORK FOR OTHER REASON","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.39004 +"166","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",21,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM LOCAL AUTHORITY","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.58088 +"167","Undecided","Undecided","5","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","FEMALE","45-54","45-54",45,"AB","B","FULL TIME STUDENT","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","ASIAN INDIAN","Undecided","NO","SELF-EMPLOYED","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.56992 +"168","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Strongly disagree","Strongly agree","Strongly agree","Tend to disagree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 3 AND 4 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","65+","65-74",68,"DE","D","RETIRED","LONDON","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN INDIAN","Labour","YES","RETIRED","C £6,500 - £7,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.42419 +"169","Undecided","Labour","8","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Not very much","Don't know","Don't know","Neither agree nor disagree","Don't know","Tend to agree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Don't know","Tend to agree","Tend to disagree","Don't know","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Don't know","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",30,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","MASTERS/PHD OR EQUIVALENT","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.50526 +"170","Undecided","Labour","7","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Don't know","Tend to disagree","Don't know","Don't know","Don't know","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Tend to agree","Don't know","Don't know","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",37,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","GCSE/O-LEVEL/CSE","NON-WHITE","BLACK AFRICAN","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.70511 +"171","Would not vote",NA,"10 (Absolutely certain to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Don't know","Don't know","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Don't know","Don't know","Neither agree nor disagree","Don't know","Don't know","Don't know","Neither agree nor disagree","Don't know","Tend to agree","Tend to agree","Don't know","Tend to disagree","Don't know","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Tend to agree","Don't know","Don't know","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 2 AND 3 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",20,"C1","C1","FULL TIME STUDENT","LONDON","GCSE/O-LEVEL/CSE","NON-WHITE","OTHER",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","SINGLE - NOT PARENT/GUARDIAN","5+","5","YES","AGED 0-3","AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.60054 +"172","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","Not very much","Works extremely well and could not be improved","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Neither agree nor disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","18-24","18-24",20,"C1","C1","FULL TIME STUDENT","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","ASIAN CHINESE",NA,"YES","FULL TIME STUDENT","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.20961 +"173","Undecided","Labour","8","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Tend to agree","Not very much influence","No influence at all","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly disagree","Tend to agree","Strongly disagree","Strongly disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","55-59","55-64",57,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.14327 +"174","Conservative",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","No influence at all","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to disagree","Strongly disagree","Tend to disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","No","Yes","Yes","Yes","No","Yes","Yes","MALE","18-24","18-24",24,"AB","B","FULL TIME STUDENT","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","ASIAN BANGLADESHI","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.44732 +"175","Conservative",NA,"5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",28,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.34132 +"176","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",72,"DE","E","RETIRED","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","YES","RETIRED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.97628 +"177","Green Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly disagree","Strongly disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",30,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Green Party","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.86505 +"178","Labour",NA,"8","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Not very much influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",35,"DE","D","UNEMPLOYED AND SEEKING WORK","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","ASIAN INDIAN","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.74017 +"179","Refused","Refused","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","Not very much","Could be improved quite a lot","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - have never seen it","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Strongly disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",53,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Refused","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.81265 +"180","Undecided","Undecided","5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",34,"AB","A","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","MIXED OTHER","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.9265 +"181","Conservative",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Some influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","65+","75+",78,"AB","A","RETIRED","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.2807 +"182","Would not vote",NA,"5","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Nothing at all","Nothing at all","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",29,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE OTHER",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.82904 +"183","Conservative",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","No influence at all","Some influence","Fairly involved","Very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",46,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","N £75,000 - £99,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.40584 +"184","Conservative",NA,"7","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","Not very much","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Strongly disagree","Some influence","Some influence","Fairly involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","35-44","35-44",44,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","STILL STUDYING","NON-WHITE","MIXED WHITE/BLACK CARIBBEAN","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","G £13,500 - £15,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","SINGLE - PARENT/GUARDIAN","REFUSED","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.41396 +"185","Labour",NA,"9","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"DON'T KNOW","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",77,"C1","C1","RETIRED","WALES","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","RETIRED","E £9,500 - £11,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.46595 +"186","Would not vote",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Tend to disagree","Tend to agree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",32,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","YORKS AND HUMBR","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.83194 +"187","Refused","UK Independence Party","1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",32,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","UK Independence Party","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.47068 +"188","Undecided","Undecided","5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",59,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","N £75,000 - £99,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.48363 +"189","Refused","Undecided","Don't know","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","A great deal","A great deal","Could be improved quite a lot","Strongly disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",43,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","BLACK OTHER","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.89269 +"190","Labour",NA,"8","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",50,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.12516 +"191","UK Independence Party",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Strongly disagree","Tend to disagree","Some influence","A great deal of influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",29,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","UK Independence Party","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",2.18981 +"192","UK Independence Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A fair amount","Needs a great deal of improvement","Tend to disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",59,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","UK Independence Party","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","N £75,000 - £99,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.07283 +"193","Undecided","Labour","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to disagree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","55-59","55-64",59,"C1","C1","NOT WORKING - HOUSEWIFE","SOUTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.36976 +"194","Undecided","UK Independence Party","9","9","no Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","No influence at all","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","45-54","45-54",52,"DE","D","UNEMPLOYED AND SEEKING WORK","EASTERN","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","UK Independence Party","YES","UNEMPLOYED AND SEEKING WORK","B £4,500 - £6,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.96987 +"195","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved in small ways but mainly works well","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Not very much influence","A great deal of influence","Not at all involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","25-34","25-34",34,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","OTHER","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","N £75,000 - £99,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.82391 +"196","Labour",NA,"7","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",30,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN BANGLADESHI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.71024 +"197","Would not vote",NA,"5","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","LESS THAN 3 MONTHS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","45-54","45-54",53,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.15639 +"198","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","25-34","25-34",27,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.5324 +"199","Conservative",NA,"7","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",38,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.41743 +"200","Undecided","Undecided","2","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Tend to disagree","Don't know","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Don't know","Don't know","Don't know","Don't know","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",29,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","GCSE/O-LEVEL/CSE","WHITE","WHITE OTHER","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","1","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.42099 +"201","Would not vote",NA,"3","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Don't know","Strongly disagree","Don't know","Don't know","Don't know","Don't know","No influence at all","Don't know","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Don't know","Don't know","Don't know","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","25-34","25-34",26,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"NO","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","I £17,500 - £24,999","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.64425 +"202","Labour",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Some influence","No influence at all","Fairly involved","Not very involved","no Yes - where living now","Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","18-24","18-24",24,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","E £9,500 - £11,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.23 +"203","Labour",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",52,"C1","C1","RETIRED","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.5321 +"204","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",71,"C1","C1","RETIRED","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","NO","RETIRED","F £11,500 - £13,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.39843 +"205","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","45-54","45-54",50,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.00972 +"206","Would not vote",NA,"2","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Tend to disagree","Strongly disagree","Neither agree nor disagree","Tend to agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Tend to disagree","Tend to disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",69,"AB","B","RETIRED","WEST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH",NA,"YES","RETIRED","REFUSED","REFUSED",NA,"POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","REFUSED","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.78915 +"207","Undecided","Undecided","9","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A great deal","A great deal","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",61,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","NON-WHITE","MIXED WHITE/BLACK CARIBBEAN","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.61829 +"208","Undecided","Undecided","Don't know","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Nothing at all","Nothing at all","Don't know","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","No","Yes","Yes","Yes","No","Yes","Yes","MALE","25-34","25-34",28,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)",NA,"REFUSED","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","SINGLE - NOT PARENT/GUARDIAN","5+","3","YES","AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",2.49434 +"209","Labour",NA,"2","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",74,"DE","E","RETIRED","LONDON","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","F £11,500 - £13,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.65421 +"210","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Nothing at all","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","No influence at all","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","45-54","45-54",54,"AB","B","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.54315 +"211","Undecided","Undecided","1 (Absolutely certain not to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Strongly agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Not very much influence","No influence at all","Fairly involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Strongly disagree","Strongly disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","BETWEEN 6 AND 12 MONTHS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","Yes","Yes","Yes","MALE","35-44","35-44",42,"C1","C1","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","B £4,500 - £6,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.27789 +"212","Undecided","Undecided","5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","DON'T KNOW","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",55,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.57919 +"213","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","25-34","25-34",29,"C2","C2","NOT WORKING - HOUSEWIFE","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","F £11,500 - £13,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.81216 +"214","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 1 AND 2 YEARS","2 OR 3 TIMES A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","60-64","55-64",60,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","H £15,500 - £17,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.63659 +"215","Labour",NA,"5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",38,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","G £13,500 - £15,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","3","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.56642 +"216","Undecided","Scottish/Welsh Nationalist","10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",41,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.87396 +"217","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to disagree","Tend to disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","65+","65-74",71,"C2","C2","RETIRED","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.32522 +"218","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Tend to disagree","Strongly disagree","Tend to agree","Tend to disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",52,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.81597 +"219","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",29,"DE","D","NOT WORKING - HOUSEWIFE","YORKS AND HUMBR","OTHER","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","G £13,500 - £15,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.84245 +"220","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Strongly disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","75+",80,"C2","C2","RETIRED","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.72185 +"221","Labour",NA,"10 (Absolutely certain to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","No influence at all","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","Yes","Yes","Yes","Yes","Yes","Yes","Yes","Yes","FEMALE","35-44","35-44",40,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.70603 +"222","Would not vote",NA,"5","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Strongly disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",56,"C2","C2","HAVE PAID JOB - PART TIME (UNDER 8 HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - PART TIME (UNDER 8 HOURS PER WEEK)","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.68637 +"223","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","45-54","45-54",54,"DE","E","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","B £4,500 - £6,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.40837 +"224","Undecided","Scottish/Welsh Nationalist","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Strongly disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Strongly disagree","Tend to disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 1 AND 2 YEARS","AROUND ONCE A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",44,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.75825 +"225","Undecided","Labour","Don't know","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Don't know","Don't know","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","75+",78,"DE","E","RETIRED","WALES","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.0191 +"226","Undecided","Undecided","8","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Nothing at all","Not very much","Needs a great deal of improvement","Strongly disagree","Don't know","Strongly disagree","Strongly disagree","Strongly agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly disagree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 6 AND 12 MONTHS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",52,"DE","E","UNEMPLOYED AND SEEKING WORK","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","YES","UNEMPLOYED AND SEEKING WORK","B £4,500 - £6,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.79632 +"227","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved quite a lot","Strongly agree","Tend to agree","Strongly disagree","Tend to agree","Strongly agree","Some influence","No influence at all","Not very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to agree","Strongly disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 6 AND 12 MONTHS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","65+","75+",75,"DE","E","RETIRED","WALES","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","RETIRED","H £15,500 - £17,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.19885 +"228","Labour",NA,"6","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","35-44","35-44",35,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","MASTERS/PHD OR EQUIVALENT","NON-WHITE","ASIAN INDIAN","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","4","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.56413 +"229","Undecided","Labour","Don't know","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Works extremely well and could not be improved","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to disagree","Tend to agree","Don't know","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","FEMALE","35-44","35-44",38,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","GCSE/O-LEVEL/CSE","NON-WHITE","OTHER","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","H £15,500 - £17,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.82948 +"230","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Don't know","Don't know","Don't know","Don't know","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",26,"C1","C1","NOT WORKING - HOUSEWIFE","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE OTHER",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.92116 +"231","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Don't know","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","No","Yes","Yes","Yes","No","Yes","Yes","MALE","35-44","35-44",42,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE OTHER","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.09632 +"232","Undecided","Would not vote","1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",39,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE OTHER","Would not vote","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.61199 +"233","Labour",NA,"8","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","MORE THAN 6 YEARS","2 OR 3 TIMES A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","65+","65-74",65,"DE","E","RETIRED","LONDON","NO FORMAL QUALIFICATIONS","WHITE","WHITE IRISH","Labour","YES","RETIRED","C £6,500 - £7,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.65421 +"234","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","55-59","55-64",55,"C2","C2","NOT WORKING - HOUSEWIFE","EASTERN","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"NO","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.01879 +"235","Undecided","Undecided","10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",46,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.92703 +"236","Labour",NA,"10 (Absolutely certain to vote)","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Not very much influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","FEMALE","45-54","45-54",47,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.61544 +"237","Refused","Refused","10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","60-64","55-64",60,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","MASTERS/PHD OR EQUIVALENT",NA,"REFUSED","Refused","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.29954 +"238","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Neither agree nor disagree","Strongly disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","65+","75+",76,"C2","C2","RETIRED","LONDON","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.84689 +"239","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","FEMALE","25-34","25-34",32,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","MASTERS/PHD OR EQUIVALENT","NON-WHITE","ASIAN CHINESE",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.51952 +"240","Undecided","Undecided","3","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Not very much influence","Very involved","Very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Fairly strong","No - have never seen it","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","18-24","18-24",18,"C1","C1","FULL TIME STUDENT","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","ASIAN OTHER","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","SINGLE - NOT PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.29937 +"241","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","35-44","35-44",36,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","MASTERS/PHD OR EQUIVALENT","NON-WHITE","ASIAN INDIAN","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","2","YES","no AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.59775 +"242","Conservative",NA,"10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","THE DAILY TELEGRAPH","THE GUARDIAN","THE FINANCIAL TIMES","no THE TIMES","THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","BROADSHEET","MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","Yes","Yes","Yes","Yes","Yes","Yes","Yes","MALE","45-54","45-54",53,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","MASTERS/PHD OR EQUIVALENT","NON-WHITE","ASIAN CHINESE","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.81265 +"243","Green Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Could be improved quite a lot","Tend to disagree","Strongly disagree","Neither agree nor disagree","Tend to agree","Strongly disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","45-54","45-54",54,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Green Party","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.88087 +"244","Labour",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",21,"C1","C1","FULL TIME STUDENT","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","FULL TIME STUDENT","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.49588 +"245","Would not vote",NA,"1 (Absolutely certain not to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Neither agree nor disagree","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Neither agree nor disagree","Don't know","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","55-59","55-64",57,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE OTHER",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.52921 +"246","Refused","Undecided","10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Nothing at all","Could be improved in small ways but mainly works well","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","45-54","45-54",53,"AB","B","NOT WORKING - HOUSEWIFE","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE OTHER","Undecided","NO","RETIRED","N £75,000 - £99,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.06 +"247","Liberal Democrats (Lib Dem)",NA,"6","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Some influence","Fairly involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Don't know","Tend to disagree","Don't know","Don't know","Tend to disagree","Tend to disagree","Don't know","Don't know","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","Yes","Yes","Yes","Yes","No","Yes","Yes","MALE","18-24","18-24",22,"C1","C1","UNEMPLOYED AND SEEKING WORK","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","ASIAN CHINESE","Liberal Democrats (Lib Dem)","YES","UNEMPLOYED AND SEEKING WORK","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.27013 +"248","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Very involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","18-24","18-24",19,"AB","B","FULL TIME STUDENT","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","NO","SELF-EMPLOYED","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.58352 +"249","Labour",NA,"5","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","No","Yes","Yes","Yes","Yes","Yes","Yes","FEMALE","18-24","18-24",20,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.80929 +"250","Undecided","Undecided","7","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","BETWEEN 1 AND 2 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","Yes","Yes","Yes","FEMALE","25-34","25-34",26,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.38797 +"251","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved in small ways but mainly works well","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Not very much influence","No influence at all","Very involved","Very involved","no Yes - where living now","Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Strongly disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 1 AND 2 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","No","Yes","Yes","No","No","Yes","No","MALE","18-24","18-24",22,"C1","C1","FULL TIME STUDENT","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.49588 +"252","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to agree","Tend to disagree","Strongly disagree","Tend to agree","Tend to disagree","Not very much influence","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to disagree","Strongly disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","25-34","25-34",25,"C1","C1","SELF-EMPLOYED","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","SELF-EMPLOYED","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.91758 +"253","Would not vote",NA,"5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Neither agree nor disagree","Don't know","Strongly disagree","Tend to disagree","Don't know","Don't know","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 6 AND 12 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",19,"AB","B","FULL TIME STUDENT","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","OTHER",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.25524 +"254","Undecided","Undecided","7","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",24,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.62682 +"255","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","45-54","45-54",49,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","OTHER","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.83692 +"256","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly disagree","Strongly disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",70,"C1","C1","RETIRED","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.33869 +"257","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Needs a great deal of improvement","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Not very much influence","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","45-54","45-54",54,"AB","A","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","N £75,000 - £99,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.00765 +"258","UK Independence Party",NA,"10 (Absolutely certain to vote)","6","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",78,"AB","B","RETIRED","SOUTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","UK Independence Party","YES","RETIRED","H £15,500 - £17,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.79356 +"259","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Very interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Tend to disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","Yes","Yes","Yes","MALE","65+","65-74",68,"DE","D","RETIRED","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.67248 +"260","Labour",NA,"10 (Absolutely certain to vote)","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","FEMALE","55-59","55-64",55,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.58562 +"261","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Tend to disagree","Strongly disagree","Tend to agree","No influence at all","No influence at all","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",48,"DE","D","RETIRED","YORKS AND HUMBR","GCSE/O-LEVEL/CSE","WHITE","WHITE OTHER",NA,"NO","RETIRED","F £11,500 - £13,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.77751 +"262","Labour",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","35-44","35-44",38,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SOUTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.5175 +"263","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved in small ways but mainly works well","Strongly disagree","Neither agree nor disagree","Strongly disagree","Tend to disagree","Neither agree nor disagree","Not very much influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",42,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.70603 +"264","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","25-34","25-34",30,"C1","C1","FULL TIME STUDENT","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.48413 +"265","Conservative",NA,"9","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",64,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.67057 +"266","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","18-24","18-24",21,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","C £6,500 - £7,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","2","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.87306 +"267","Conservative",NA,"10 (Absolutely certain to vote)","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","75+",81,"C2","C2","RETIRED","SOUTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.92416 +"268","Undecided","Undecided","10 (Absolutely certain to vote)","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",48,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.07321 +"269","Undecided","Undecided","8","2","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",48,"C1","C1","SELF-EMPLOYED","SOUTH EAST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Undecided","YES","SELF-EMPLOYED","J £25,000 - £29,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.21951 +"270","Undecided","Undecided","4","2","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Some influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",40,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","G £13,500 - £15,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","5","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.61998 +"271","Other",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved in small ways but mainly works well","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 5 AND 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",39,"C2","C2","NOT WORKING - HOUSEWIFE","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Other","NO","NOT WORKING - HOUSEWIFE","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","WID/DIV/SEP - PARENT/GUARDIAN","2","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.4239 +"272","Other",NA,"4","2","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",58,"C2","C2","NOT WORKING - HOUSEWIFE","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Other","YES","NOT WORKING - HOUSEWIFE","F £11,500 - £13,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","WID/DIV/SEP - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.46168 +"273","Would not vote",NA,"2","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Nothing at all","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",44,"C1","C1","SELF-EMPLOYED","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","WHITE","WHITE OTHER",NA,"YES","SELF-EMPLOYED","M £50,000 - £74,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.88417 +"274","Labour",NA,"6","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly disagree","Not very much influence","No influence at all","Fairly involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","Very strong","No - have never seen it","Tend to disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","18-24","18-24",24,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE OTHER","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.19421 +"275","Labour",NA,"10 (Absolutely certain to vote)","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",36,"AB","A","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.52839 +"276","Would not vote",NA,"6","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","FEMALE","18-24","18-24",23,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE OTHER",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.77797 +"277","Refused","Would not vote","Don't know","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Don't know","Don't know","Don't know","Don't know","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","18-24","18-24",24,"C1","C1","FULL TIME STUDENT","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","OTHER","Would not vote","YES","FULL TIME STUDENT","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.3421 +"278","Would not vote",NA,"6","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","18-24","18-24",23,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE OTHER",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.31257 +"279","Undecided","Undecided","6","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Nothing at all","A fair amount","Needs a great deal of improvement","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","FEMALE","35-44","35-44",40,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","OTHER","WHITE","WHITE OTHER","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.70805 +"280","Labour",NA,"6","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","Not very much","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Not very much influence","No influence at all","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","25-34","25-34",25,"C1","C1","FULL TIME STUDENT","LONDON","MASTERS/PHD OR EQUIVALENT","NON-WHITE","ASIAN BANGLADESHI","Labour","YES","FULL TIME STUDENT","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.40029 +"281","Would not vote",NA,"Don't know","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Don't know","Neither agree nor disagree","Don't know","Don't know","Don't know","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","no No","Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",19,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","REFUSED",NA,"SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.64903 +"282","Conservative",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Strongly agree","Strongly agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",38,"AB","A","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.62752 +"283","Conservative",NA,"6","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","FEMALE","25-34","25-34",33,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE IRISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",2.57682 +"284","Would not vote",NA,"1 (Absolutely certain not to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Some influence","Fairly involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 2 AND 3 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",25,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE OTHER",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.9485 +"285","Undecided","Conservative","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 1 AND 2 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","25-34","25-34",26,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","GCSE/O-LEVEL/CSE","WHITE","WHITE OTHER","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.9485 +"286","Undecided","Labour","7","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","65+","75+",84,"DE","E","RETIRED","SOUTH WEST","OTHER","WHITE","WHITE BRITISH","Labour","YES","RETIRED","B £4,500 - £6,499","OTHER",NA,"POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.51285 +"287","Labour",NA,"8","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","75+",78,"DE","D","RETIRED","SOUTH WEST","OTHER","WHITE","WHITE BRITISH","Labour","YES","RETIRED","B £4,500 - £6,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.41686 +"288","Undecided","Conservative","9","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to disagree","Tend to disagree","Strongly agree","Strongly disagree","Tend to agree","Don't know","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",66,"AB","B","RETIRED","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.9346 +"289","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Strongly disagree","Tend to disagree","Tend to agree","Tend to disagree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Strongly disagree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",31,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","YORKS AND HUMBR","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.20331 +"290","Conservative",NA,"Don't know","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Some influence","No influence at all","Fairly involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","Fairly strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Neither agree nor disagree","Don't know","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 6 AND 12 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",22,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE OTHER","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","N £75,000 - £99,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.30837 +"291","Labour",NA,"6","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","Not very much","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",53,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.70153 +"292","Labour",NA,"6","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","A fair amount","Works extremely well and could not be improved","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","Neither agree nor disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",31,"C2","C2","NOT WORKING - HOUSEWIFE","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.4181 +"293","Conservative",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","65+","65-74",66,"C2","C2","RETIRED","NORTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","G £13,500 - £15,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.24659 +"294","Would not vote",NA,"6","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Nothing at all","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Not very much influence","Some influence","Not very involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",18,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN OTHER",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.35434 +"295","Conservative",NA,"3","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","No influence at all","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 5 AND 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","35-44","35-44",43,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.82818 +"296","Labour",NA,"5","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to disagree","Tend to agree","Neither agree nor disagree","Don't know","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",41,"DE","D","UNEMPLOYED AND SEEKING WORK","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","WHITE","WHITE OTHER","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.36179 +"297","Labour",NA,"6","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","A fair amount","Nothing at all","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","No influence at all","No influence at all","Not very involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Strongly disagree","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",31,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","MASTERS/PHD OR EQUIVALENT","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.82424 +"298","Liberal Democrats (Lib Dem)",NA,"6","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","A great deal","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Not very much influence","Some influence","Not very involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to agree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",37,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN PAKISTANI","Liberal Democrats (Lib Dem)","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.69579 +"299","Labour",NA,"6","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Not very much influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Don't know","Strongly agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 2 AND 3 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","18-24","18-24",24,"DE","E","NOT IN PAID WORK FOR OTHER REASON","LONDON","GCSE/O-LEVEL/CSE","NON-WHITE","BLACK AFRICAN","Labour","YES","NOT IN PAID WORK FOR OTHER REASON","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.52827 +"300","Conservative",NA,"7","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","35-44","35-44",40,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","BLACK AFRICAN","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.8569 +"301","Labour",NA,"5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Nothing at all","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly disagree","Tend to agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Strongly disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",31,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.67735 +"302","Undecided","Undecided","6","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","DON'T KNOW","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","18-24","18-24",18,"C1","C1","FULL TIME STUDENT","LONDON","GCSE/O-LEVEL/CSE","NON-WHITE","BLACK AFRICAN","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.29937 +"303","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","35-44","35-44",35,"C2","C2","NOT WORKING - HOUSEWIFE","WEST MIDLANDS","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"YES","NOT WORKING - HOUSEWIFE","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.88572 +"304","Refused","Refused","6","Refused","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Yes - where living now","no Yes - another address","no No","no Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Don't know","Don't know","Don't know","Don't know","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","No","Yes","Yes","No","No","Yes","No","FEMALE","35-44","35-44",38,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","NON-WHITE","MIXED OTHER","Refused","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","4","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.70511 +"305","Undecided","Labour","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","No","No","No","No","No","No","FEMALE","45-54","45-54",51,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","WEST MIDLANDS","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.07548 +"306","Labour",NA,"9","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","A fair amount","Could be improved quite a lot","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","A great deal of influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Don't know","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","35-44","35-44",42,"DE","E","NOT IN PAID WORK FOR OTHER REASON","LONDON","NO FORMAL QUALIFICATIONS","NON-WHITE","BLACK AFRICAN","Labour","YES","NOT IN PAID WORK FOR OTHER REASON","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.3616 +"307","Undecided","Conservative","8","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","DON'T KNOW","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","45-54","45-54",47,"DE","E","NOT WORKING - HOUSEWIFE","LONDON","NO FORMAL QUALIFICATIONS","NON-WHITE","BLACK CARIBBEAN","Conservative","YES","NOT WORKING - HOUSEWIFE","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.41777 +"308","Liberal Democrats (Lib Dem)",NA,"8","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","25-34","25-34",33,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","BLACK AFRICAN","Liberal Democrats (Lib Dem)","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.60531 +"309","Conservative",NA,"8","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 2 AND 3 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","35-44","35-44",44,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","BLACK CARIBBEAN","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","SINGLE - PARENT/GUARDIAN","4","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.74713 +"310","Liberal Democrats (Lib Dem)",NA,"9","3","Contacted a local councillor or MP/MSP/WAM","Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","No influence at all","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Tend to disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",41,"AB","B","NOT WORKING - HOUSEWIFE","EASTERN","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","4","YES","no AGED 0-3","AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.26612 +"311","Labour",NA,"10 (Absolutely certain to vote)","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",28,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","NORTH WEST","OTHER","NON-WHITE","ASIAN PAKISTANI","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","F £11,500 - £13,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","2","YES","no AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.60998 +"312","Refused","Labour","5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","A great deal of influence","Some influence","Not very involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","Yes","Yes","Yes","No","No","Yes","No","MALE","18-24","18-24",22,"AB","B","FULL TIME STUDENT","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ARAB","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.29945 +"313","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A great deal","A fair amount","Don't know","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Strongly disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","65+","65-74",71,"C1","C1","SELF-EMPLOYED","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","OTHER","Labour","YES","SELF-EMPLOYED","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.30947 +"314","UK Independence Party",NA,"8","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Tend to disagree","Strongly disagree","Neither agree nor disagree","Tend to disagree","No influence at all","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 2 AND 3 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",32,"C2","C2","NOT WORKING - HOUSEWIFE","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","UK Independence Party","NO","SELF-EMPLOYED","E £9,500 - £11,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.87745 +"315","Undecided","Undecided","1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Don't know","Don't know","Don't know","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","25-34","25-34",33,"DE","D","SELF-EMPLOYED","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE OTHER","Undecided","YES","SELF-EMPLOYED","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.25131 +"316","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Nothing at all","Needs a great deal of improvement","Strongly disagree","Don't know","Don't know","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","no No","Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Tend to agree","Don't know","Don't know","Don't know","Don't know","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Don't know","Don't know","Don't know","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","25-34","25-34",34,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.0637 +"317","Labour",NA,"5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Nothing at all","Nothing at all","Could be improved quite a lot","Strongly disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Not very much influence","Some influence","Fairly involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",21,"C2","C2","SELF-EMPLOYED","WEST MIDLANDS","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN PAKISTANI","Labour","NO","SELF-EMPLOYED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.41303 +"318","Refused","Refused","1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","Not very much","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Some influence","Not very much influence","Not very involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",0,"DE","D","NOT WORKING - HOUSEWIFE","WEST MIDLANDS","NO FORMAL QUALIFICATIONS",NA,"REFUSED","Refused","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET",NA,"MARRIED - NOT PARENT/GUARDIAN","REFUSED","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.11654 +"319","Labour",NA,"6","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",41,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","D £7,500 - £9,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.58777 +"320","Labour",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","Nothing at all","Not very much","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Some influence","Not very involved","Not very involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 1 AND 2 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",35,"DE","D","SELF-EMPLOYED","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","NON-WHITE","OTHER","Labour","YES","SELF-EMPLOYED","H £15,500 - £17,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.45381 +"321","Labour",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Not very much influence","Some influence","Fairly involved","Not very involved","no Yes - where living now","Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",22,"DE","D","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","WEST MIDLANDS","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","NON-WHITE","ASIAN PAKISTANI","Labour","NO","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.44703 +"322","Liberal Democrats (Lib Dem)",NA,"6","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 1 AND 2 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",40,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN PAKISTANI","Liberal Democrats (Lib Dem)","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.74635 +"323","Labour",NA,"8","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Not very much influence","Some influence","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",40,"DE","E","SELF-EMPLOYED","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","YES","SELF-EMPLOYED","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.35112 +"324","Labour",NA,"7","5","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Not very much influence","Some influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",19,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","ASIAN PAKISTANI","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","SINGLE - NOT PARENT/GUARDIAN","5+","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.62348 +"325","Would not vote",NA,"2","2","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",62,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","E £9,500 - £11,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.14191 +"326","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Tend to agree","Neither agree nor disagree","Strongly disagree","Tend to agree","Tend to disagree","Some influence","No influence at all","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","Yes","No","Yes","Yes","Yes","No","Yes","Yes","FEMALE","45-54","45-54",53,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","BLACK CARIBBEAN","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","REFUSED","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.37187 +"327","Conservative",NA,"5","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","18-24","18-24",19,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","NON-WHITE","BLACK CARIBBEAN","Conservative","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","BELONGS TO HOUSING ASSOCIATION","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.54185 +"328","Refused","Refused","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","Yes","Yes","Yes","Yes","Yes","Yes","Yes","FEMALE","35-44","35-44",44,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)",NA,"REFUSED","Refused","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.65172 +"329","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Needs a great deal of improvement","Strongly agree","Strongly disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Very involved","Very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Strongly disagree","Strongly disagree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","18-24","18-24",19,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.73435 +"330","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","Not very much","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","Fairly strong","Yes - in full","Tend to disagree","Strongly disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","25-34","25-34",33,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","GCSE/O-LEVEL/CSE","NON-WHITE","BLACK CARIBBEAN",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","E £9,500 - £11,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.82166 +"331","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A fair amount","Works extremely well and could not be improved","Tend to agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly disagree","Some influence","Some influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly disagree","Tend to agree","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",66,"DE","E","RETIRED","EASTERN","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.6709 +"332","Labour",NA,"6","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","25-34","25-34",25,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE OTHER","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.54368 +"333","Refused","Labour","4","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 4 AND 5 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",53,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN INDIAN","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","H £15,500 - £17,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.69933 +"334","Labour",NA,"7","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 5 AND 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","18-24","18-24",22,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.23875 +"335","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","60-64","55-64",63,"AB","B","RETIRED","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.18204 +"336","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","Yes","Yes","Yes","Yes","No","Yes","Yes","MALE","18-24","18-24",23,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.58334 +"337","Green Party",NA,"10 (Absolutely certain to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to agree","Don't know","Tend to agree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","No","Yes","Yes","No","Yes","Yes","Yes","MALE","18-24","18-24",20,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Green Party","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.58334 +"338","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Tend to disagree","Strongly disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",57,"AB","A","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.84172 +"339","Undecided","Scottish/Welsh Nationalist","5","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","A fair amount","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Some influence","No influence at all","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","Don't know","Strongly agree","Tend to agree","Strongly agree","Don't know","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",73,"AB","A","RETIRED","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","RETIRED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.37221 +"340","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Don't know","Don't know","no Yes - where living now","Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Don't know","Tend to agree","Tend to disagree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 6 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",21,"C1","C1","FULL TIME STUDENT","YORKS AND HUMBR","STILL STUDYING","WHITE","WHITE BRITISH",NA,"YES","FULL TIME STUDENT","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.58334 +"341","Labour",NA,"5","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 3 AND 6 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","Yes","Yes","Yes","Yes","No","Yes","Yes","FEMALE","18-24","18-24",21,"C1","C1","FULL TIME STUDENT","YORKS AND HUMBR","STILL STUDYING","WHITE","WHITE BRITISH","Labour","YES","FULL TIME STUDENT","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.80929 +"342","Refused","Refused","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Don't know","Don't know","Don't know","Strongly disagree","Don't know","Strongly disagree","Don't know","Don't know","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","75+",82,"DE","E","NOT WORKING - HOUSEWIFE","NORTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Refused","YES","NOT WORKING - HOUSEWIFE","REFUSED","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.90565 +"343","Other",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 4 AND 5 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",69,"C2","C2","RETIRED","NORTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Other","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.8362 +"344","Undecided","Conservative","7","7","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",64,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","EASTERN","OTHER","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","G £13,500 - £15,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.83723 +"345","Conservative",NA,"10 (Absolutely certain to vote)","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to disagree","Strongly disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","FEMALE","45-54","45-54",52,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","G £13,500 - £15,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.18124 +"346","Undecided","Labour","10 (Absolutely certain to vote)","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","MALE","25-34","25-34",34,"C2","C2","SELF-EMPLOYED","EASTERN","OTHER","NON-WHITE","MIXED OTHER","Labour","YES","SELF-EMPLOYED","L £40,000 - £49,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.48353 +"347","Undecided","Undecided","6","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly disagree","Not very much influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","60-64","55-64",64,"C1","C1","RETIRED","SOUTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.11439 +"348","Labour",NA,"7","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Don't know","Strongly disagree","Tend to agree","Tend to disagree","Not very much influence","No influence at all","Don't know","Don't know","no Yes - where living now","no Yes - another address","no No","Don't know","I am not a supporter of any political party","No - have never seen it","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","60-64","55-64",62,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.57177 +"349","Undecided","Undecided","5","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Don't know","Don't know","Don't know","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Tend to disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",24,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.94957 +"350","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Not very much influence","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",40,"AB","B","SELF-EMPLOYED","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","SELF-EMPLOYED","N £75,000 - £99,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.35507 +"351","UK Independence Party",NA,"10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","25-34","25-34",25,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","UK Independence Party","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.2498 +"352","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A great deal","A great deal","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Strongly disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","60-64","55-64",63,"AB","B","RETIRED","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.68376 +"353","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","60-64","55-64",60,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE OTHER","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.16749 +"354","Labour",NA,"10 (Absolutely certain to vote)","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","Yes","Yes","Yes","No","No","Yes","No","FEMALE","45-54","45-54",54,"AB","B","SELF-EMPLOYED","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE OTHER","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.06 +"355","Conservative",NA,"9","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved quite a lot","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","No influence at all","Not very much influence","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","Yes","Yes","Yes","No","No","Yes","No","MALE","35-44","35-44",43,"AB","B","SELF-EMPLOYED","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","SELF-EMPLOYED","O MORE THAN £100,000","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.76477 +"356","Undecided","Undecided","5","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","25-34","25-34",33,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","EASTERN","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","4","YES","AGED 0-3","AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.85198 +"357","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",91,"AB","B","RETIRED","EASTERN","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.81298 +"358","Would not vote",NA,"4","5","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Some influence","Not very much influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","35-44","35-44",35,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.81923 +"359","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Strongly disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to disagree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",64,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.47689 +"360","UK Independence Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","75+",81,"AB","A","RETIRED","WALES","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","UK Independence Party","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.79762 +"361","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","No","Yes","No","No","Yes","Yes","Yes","MALE","55-59","55-64",55,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.97094 +"362","Undecided","Labour","10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Some influence","Some influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",68,"AB","B","RETIRED","WALES","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","NO","RETIRED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.62404 +"363","Liberal Democrats (Lib Dem)",NA,"7","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",79,"AB","A","RETIRED","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","RETIRED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.2807 +"364","Would not vote",NA,"2","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Tend to agree","Don't know","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","25-34","25-34",33,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SOUTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH",NA,"NO","SELF-EMPLOYED","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.63977 +"365","Undecided","Labour","10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",67,"DE","E","RETIRED","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.33995 +"366","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",67,"C1","C1","RETIRED","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.33869 +"367","Undecided","Undecided","1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","No influence at all","No influence at all","Not very involved","Not very involved","no Yes - where living now","Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly disagree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",28,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.93776 +"368","Would not vote",NA,"1 (Absolutely certain not to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",42,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.67103 +"369","Undecided","Labour","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Some influence","Some influence","Very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 4 AND 5 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","60-64","55-64",60,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.37042 +"370","Would not vote",NA,"2","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved in small ways but mainly works well","Strongly agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 6 AND 12 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","45-54","45-54",49,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",2.86919 +"371","Undecided","Liberal Democrats (Lib Dem)","7","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","MALE","60-64","55-64",64,"AB","B","RETIRED","WEST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.66217 +"372","UK Independence Party",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved quite a lot","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to disagree","Strongly disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 4 AND 5 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","65+","65-74",73,"AB","A","HAVE PAID JOB - PART TIME (UNDER 8 HOURS PER WEEK)","SOUTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","UK Independence Party","YES","HAVE PAID JOB - PART TIME (UNDER 8 HOURS PER WEEK)","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.20182 +"373","Undecided","Undecided","3","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Don't know","Don't know","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Don't know","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"DON'T KNOW","AROUND ONCE A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",58,"AB","B","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE OTHER","Undecided","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","DON'T KNOW","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.26937 +"374","Would not vote",NA,"3","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","No influence at all","No influence at all","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",65,"C1","C1","RETIRED","SOUTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"YES","RETIRED","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.86295 +"375","Labour",NA,"4","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Tend to disagree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 3 AND 6 MONTHS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",64,"DE","E","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","NORTH WEST","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.28741 +"376","Labour",NA,"8","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",28,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.08507 +"377","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to disagree","Strongly disagree","Tend to agree","Strongly agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Tend to disagree","Strongly disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",82,"DE","E","RETIRED","SOUTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","RETIRED","D £7,500 - £9,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.85779 +"378","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Neither agree nor disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Strongly disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","60-64","55-64",64,"C2","C2","RETIRED","SOUTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.22235 +"379","Labour",NA,"10 (Absolutely certain to vote)","3","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 4 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","55-59","55-64",56,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.80346 +"380","Undecided","Labour","10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",69,"C1","C1","RETIRED","SOUTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","NO","NOT WORKING - HOUSEWIFE","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.28647 +"381","Undecided","Undecided","10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Some influence","Not very much influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 4 AND 5 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","18-24","18-24",24,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.19921 +"382","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","55-59","55-64",58,"C1","C1","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.35829 +"383","Undecided","Undecided","7","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Strongly disagree","Tend to disagree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not very involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",50,"AB","B","SELF-EMPLOYED","EASTERN","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","YES","SELF-EMPLOYED","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.14237 +"384","Conservative",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",82,"AB","B","RETIRED","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.08211 +"385","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A fair amount","Works extremely well and could not be improved","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",70,"C1","C1","RETIRED","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.32851 +"386","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","MALE","45-54","45-54",53,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.05622 +"387","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly disagree","Strongly disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly disagree","Strongly disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","FEMALE","60-64","55-64",60,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.78335 +"388","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Don't know","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",64,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE OTHER","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.57861 +"389","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","No influence at all","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",30,"AB","B","FULL TIME STUDENT","EASTERN","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.12431 +"390","Conservative",NA,"10 (Absolutely certain to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",66,"C1","C1","NOT WORKING - HOUSEWIFE","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.3916 +"391","Undecided","Conservative","8","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",67,"C2","C2","RETIRED","SOUTH WEST","OTHER","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.62651 +"392","UK Independence Party",NA,"10 (Absolutely certain to vote)","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","75+",84,"C2","C2","RETIRED","SOUTH WEST","OTHER","WHITE","WHITE BRITISH","UK Independence Party","YES","RETIRED","C £6,500 - £7,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.69758 +"393","Labour",NA,"7","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Nothing at all","Could be improved in small ways but mainly works well","Strongly disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Neither agree nor disagree","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","75+",85,"DE","D","RETIRED","SOUTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.99592 +"394","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 1 AND 2 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","35-44","35-44",40,"DE","E","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.03287 +"395","Labour",NA,"10 (Absolutely certain to vote)","7","Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","No influence at all","No influence at all","Very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","75+",77,"DE","D","RETIRED","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.44187 +"396","Refused","Refused","10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Some influence","Fairly involved","Don't know","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Don't know","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","45-54","45-54",53,"DE","D","NOT IN PAID WORK FOR OTHER REASON","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Refused","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.58262 +"397","Conservative",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",32,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",2.29246 +"398","Other",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A great deal","Could be improved in small ways but mainly works well","Tend to disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","No influence at all","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","55-59","55-64",58,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Other","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.61991 +"399","Conservative",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","65+","75+",82,"AB","B","RETIRED","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","D £7,500 - £9,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.55385 +"400","Undecided","UK Independence Party","8","7","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 1 AND 2 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","75+",90,"C1","C1","RETIRED","SOUTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","UK Independence Party","YES","RETIRED","F £11,500 - £13,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.67438 +"401","Conservative",NA,"9","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 2 AND 3 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","55-59","55-64",55,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.97156 +"402","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Tend to agree","Strongly disagree","Strongly agree","Tend to disagree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",41,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.83081 +"403","Labour",NA,"6","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",53,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","G £13,500 - £15,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","WID/DIV/SEP - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.48617 +"404","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Needs a great deal of improvement","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",44,"AB","A","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",2.13534 +"405","UK Independence Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","75+",86,"AB","A","RETIRED","EASTERN","OTHER","WHITE","WHITE OTHER","UK Independence Party","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","REFUSED",NA,"POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.21304 +"406","Labour",NA,"7","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",42,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SOUTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","WID/DIV/SEP - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.01051 +"407","Undecided","Undecided","6","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly disagree","Neither agree nor disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","LESS THAN 3 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",34,"AB","B","SELF-EMPLOYED","SOUTH EAST","GCSE/O-LEVEL/CSE","NON-WHITE","OTHER","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","SINGLE - NOT PARENT/GUARDIAN","4","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.76501 +"408","UK Independence Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",35,"AB","B","SELF-EMPLOYED","SOUTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","UK Independence Party","YES","SELF-EMPLOYED","M £50,000 - £74,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.01051 +"409","Would not vote",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved quite a lot","Tend to disagree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","No influence at all","No influence at all","Very involved","Very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",63,"AB","B","RETIRED","SCOTLAND","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH",NA,"YES","RETIRED","F £11,500 - £13,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.29906 +"410","Undecided","Undecided","10 (Absolutely certain to vote)","5","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Some influence","No influence at all","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","BROADSHEET","MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","Yes","Yes","Yes","Yes","Yes","Yes","Yes","MALE","45-54","45-54",48,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","OTHER","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.82978 +"411","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",72,"C1","C1","RETIRED","SCOTLAND","OTHER","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","F £11,500 - £13,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.26726 +"412","Green Party",NA,"6","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Needs a great deal of improvement","Tend to agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","No","Yes","Yes","Yes","Yes","Yes","Yes","MALE","18-24","18-24",24,"C1","C1","FULL TIME STUDENT","SCOTLAND","OTHER","WHITE","WHITE BRITISH","Green Party","NO","SELF-EMPLOYED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.37159 +"413","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","Not very much","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","65+","65-74",73,"C1","C1","RETIRED","SCOTLAND","OTHER","WHITE","WHITE BRITISH","Conservative","NO","RETIRED","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.48973 +"414","Scottish/Welsh Nationalist",NA,"6","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Strongly disagree","Tend to disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","60-64","55-64",64,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.57919 +"415","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A fair amount","Works extremely well and could not be improved","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Not very much influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Strongly agree","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","65+","65-74",65,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.28692 +"416","Undecided","Undecided","9","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",33,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","B £4,500 - £6,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","WID/DIV/SEP - PARENT/GUARDIAN","2","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.40742 +"417","Undecided","Undecided","9","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",37,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","F £11,500 - £13,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","WID/DIV/SEP - PARENT/GUARDIAN","3","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.39951 +"418","Conservative",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Tend to agree","Strongly disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Strongly disagree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",85,"DE","E","RETIRED","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","D £7,500 - £9,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.44527 +"419","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Could be improved in small ways but mainly works well","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","60-64","55-64",62,"C1","C1","RETIRED","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","G £13,500 - £15,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.42422 +"420","British National Party (BNP)",NA,"8","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 4 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",55,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","British National Party (BNP)","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.57526 +"421","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Not very much influence","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",20,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","EASTERN","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","D £7,500 - £9,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.77242 +"422","Labour",NA,"10 (Absolutely certain to vote)","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",68,"C2","C2","RETIRED","EASTERN","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","H £15,500 - £17,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.78892 +"423","Undecided","Labour","5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","NO","BETWEEN 1 AND 2 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","45-54","45-54",52,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",2.39769 +"424","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Strongly disagree","Tend to agree","Neither agree nor disagree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","75+",81,"C2","C2","RETIRED","SOUTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.26355 +"425","Labour",NA,"3","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","no Yes - where living now","no Yes - another address","no No","Don't know","Fairly strong","No - have never seen it","Strongly disagree","Strongly disagree","Don't know","Strongly disagree","Don't know","Don't know","Don't know","Strongly disagree","Don't know","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Don't know","Don't know","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 1 AND 2 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",18,"DE","E","FULL TIME STUDENT","YORKS AND HUMBR","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","NO","UNEMPLOYED AND SEEKING WORK","E £9,500 - £11,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.02939 +"426","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","45-54","45-54",53,"AB","B","NOT IN PAID WORK FOR OTHER REASON","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","NO","NOT IN PAID WORK FOR OTHER REASON","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.11054 +"427","Conservative",NA,"9","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",95,"DE","E","RETIRED","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.75453 +"428","Refused","Undecided","8","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","65+","65-74",72,"C1","C1","RETIRED","YORKS AND HUMBR","OTHER","WHITE","WHITE BRITISH","Undecided","NO","RETIRED","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.54645 +"429","Conservative",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","45-54","45-54",49,"DE","D","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","SOUTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","J £25,000 - £29,999","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.25233 +"430","Conservative",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Works extremely well and could not be improved","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","60-64","55-64",64,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.93197 +"431","Conservative",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Strongly agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",74,"C1","C1","RETIRED","SOUTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","F £11,500 - £13,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.51486 +"432","Conservative",NA,"4","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Some influence","Not very much influence","Not at all involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly disagree","Tend to agree","Tend to disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",57,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","H £15,500 - £17,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.9048 +"433","Would not vote",NA,"1 (Absolutely certain not to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",26,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.02438 +"434","Refused","Refused","10 (Absolutely certain to vote)","5","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","55-59","55-64",56,"AB","A","NOT IN PAID WORK FOR OTHER REASON","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Refused","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.06354 +"435","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Tend to disagree","Tend to disagree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - have never seen it","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","45-54","45-54",54,"DE","D","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.58262 +"436","Undecided","Labour","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Needs a great deal of improvement","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Some influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - have never seen it","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to agree","Strongly disagree","Tend to disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","65+","75+",94,"DE","D","RETIRED","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.37562 +"437","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","7","no Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",59,"C1","C1","RETIRED","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.29149 +"438","Labour",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A fair amount","Needs a great deal of improvement","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Some influence","No influence at all","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",18,"C1","C1","FULL TIME STUDENT","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.29263 +"439","Would not vote",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","60-64","55-64",64,"DE","D","RETIRED","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.53547 +"440","Refused","Refused","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","THE GUARDIAN","THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","Yes","Yes","Yes","No","No","Yes","No","MALE","55-59","55-64",57,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Refused","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","REFUSED","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.56096 +"441","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Not very much","Needs a great deal of improvement","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 6 AND 12 MONTHS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","18-24","18-24",21,"DE","E","UNEMPLOYED AND SEEKING WORK","SOUTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","UNEMPLOYED AND SEEKING WORK","REFUSED","BELONGS TO HOUSING ASSOCIATION","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.03513 +"442","UK Independence Party",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","LESS THAN 3 MONTHS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","65+","65-74",72,"C1","C1","RETIRED","SOUTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","UK Independence Party","YES","RETIRED","F £11,500 - £13,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.04662 +"443","Refused","Conservative","5","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",64,"C1","C1","RETIRED","SOUTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE OTHER","Conservative","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.76571 +"444","Refused","Refused","9","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to agree","Strongly disagree","Strongly agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","NO","BETWEEN 4 AND 5 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",51,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Refused","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.43451 +"445","UK Independence Party",NA,"6","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Tend to disagree","Strongly disagree","Tend to disagree","Strongly disagree","Some influence","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 2 AND 3 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",69,"C2","C2","RETIRED","NORTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","UK Independence Party","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.2067 +"446","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","Yes","Yes","Yes","FEMALE","60-64","55-64",62,"C1","C1","RETIRED","SCOTLAND","OTHER","WHITE","WHITE BRITISH","Undecided","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.36062 +"447","Undecided","Undecided","6","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 4 AND 5 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",49,"C1","C1","FULL TIME STUDENT","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Undecided","YES","FULL TIME STUDENT","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.39017 +"448","Conservative",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Not very much influence","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 1 AND 2 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","18-24","18-24",24,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.84476 +"449","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","65+","65-74",68,"AB","B","RETIRED","SCOTLAND","OTHER","WHITE","WHITE BRITISH","Conservative","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.62337 +"450","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A great deal","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Some influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Tend to agree","Strongly disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","FEMALE","35-44","35-44",39,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.57768 +"451","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 4 AND 5 YEARS","2 OR 3 TIMES A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","18-24","18-24",23,"DE","E","UNEMPLOYED AND SEEKING WORK","NORTH EAST","OTHER","WHITE","WHITE BRITISH",NA,"NO","NOT IN PAID WORK FOR OTHER REASON","D £7,500 - £9,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.01318 +"452","Undecided","Labour","8","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly disagree","Strongly disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","No influence at all","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","25-34","25-34",31,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","H £15,500 - £17,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","4","3","YES","no AGED 0-3","AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.52138 +"453","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","60-64","55-64",61,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.84019 +"454","Refused","Refused","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","FEMALE","45-54","45-54",50,"AB","A","NOT WORKING - HOUSEWIFE","YORKS AND HUMBR","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Refused","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.28144 +"455","Green Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",49,"C1","C1","SELF-EMPLOYED","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Green Party","YES","SELF-EMPLOYED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.77778 +"456","Labour",NA,"6","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","45-54","45-54",47,"DE","E","UNEMPLOYED AND SEEKING WORK","NORTH WEST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","UNEMPLOYED AND SEEKING WORK","C £6,500 - £7,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.03241 +"457","Labour",NA,"8","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","No","Yes","No","No","No","No","No","FEMALE","35-44","35-44",42,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.52057 +"458","Undecided","Undecided","10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Needs a great deal of improvement","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly disagree","Tend to agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","65+","75+",79,"DE","E","RETIRED","LONDON","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Undecided","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.04138 +"459","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Tend to disagree","Strongly disagree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly disagree","Strongly disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",24,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","F £11,500 - £13,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.76984 +"460","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly disagree","Tend to agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",60,"DE","E","RETIRED","LONDON","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","RETIRED","B £4,500 - £6,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.03843 +"461","Labour",NA,"10 (Absolutely certain to vote)","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to disagree","Strongly disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","Yes","No","Yes","Yes","Yes","Yes","Yes","MALE","55-59","55-64",55,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE OTHER","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","N £75,000 - £99,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.70604 +"462","Labour",NA,"10 (Absolutely certain to vote)","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Strongly agree","Strongly disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","Yes","Yes","Yes","No","No","Yes","No","FEMALE","45-54","45-54",50,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","BLACK CARIBBEAN","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.78704 +"463","Would not vote",NA,"3","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Not very much influence","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Tend to disagree","Don't know","Neither agree nor disagree","Don't know","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",56,"DE","E","UNEMPLOYED AND SEEKING WORK","NORTH WEST","NO FORMAL QUALIFICATIONS","NON-WHITE","MIXED OTHER",NA,"YES","UNEMPLOYED AND SEEKING WORK","C £6,500 - £7,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.60014 +"464","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Tend to disagree","No influence at all","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Tend to disagree","Strongly disagree","Tend to disagree","Strongly disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 4 AND 5 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","35-44","35-44",40,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.75757 +"465","Undecided","Undecided","1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Nothing at all","Needs a great deal of improvement","Tend to disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",26,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","F £11,500 - £13,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.63489 +"466","Conservative",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved in small ways but mainly works well","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",65,"AB","B","RETIRED","SOUTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.51383 +"467","Labour",NA,"4","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","No influence at all","Some influence","Not at all involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly disagree","Neither agree nor disagree","Tend to agree","Strongly disagree","Tend to agree","Tend to disagree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",28,"DE","E","UNEMPLOYED AND SEEKING WORK","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","UNEMPLOYED AND SEEKING WORK","DON'T KNOW","BELONGS TO HOUSING ASSOCIATION","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.61982 +"468","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Strongly disagree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","75+",75,"C2","C2","RETIRED","EAST MIDLANDS","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","F £11,500 - £13,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.71701 +"469","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Strongly disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","25-34","25-34",33,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EAST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",3.90112 +"470","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to disagree","Tend to disagree","Strongly disagree","Strongly disagree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",47,"DE","E","UNEMPLOYED AND SEEKING WORK","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","UNEMPLOYED AND SEEKING WORK","D £7,500 - £9,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.50858 +"471","Undecided","Undecided","5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 4 AND 5 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",20,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EAST MIDLANDS","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","SINGLE - NOT PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",2.66114 +"472","UK Independence Party",NA,"9","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly disagree","Tend to disagree","Strongly disagree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",63,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","UK Independence Party","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.29166 +"473","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 1 AND 2 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","25-34","25-34",32,"DE","E","UNEMPLOYED AND SEEKING WORK","EAST MIDLANDS","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","UNEMPLOYED AND SEEKING WORK","C £6,500 - £7,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","3","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",2.46287 +"474","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Tend to agree","Tend to agree","Strongly disagree","Strongly disagree","Tend to agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",27,"DE","E","UNEMPLOYED AND SEEKING WORK","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH",NA,"YES","UNEMPLOYED AND SEEKING WORK","D £7,500 - £9,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.51941 +"475","Undecided","Labour","1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Strongly disagree","Tend to agree","Strongly agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"DON'T KNOW","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",59,"DE","E","UNEMPLOYED AND SEEKING WORK","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","UNEMPLOYED AND SEEKING WORK","C £6,500 - £7,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.46174 +"476","Labour",NA,"6","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Strongly disagree","Strongly disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 6 AND 12 MONTHS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",66,"DE","E","RETIRED","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","D £7,500 - £9,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.44186 +"477","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Strongly disagree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",64,"C1","C1","RETIRED","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","OTHER","Labour","YES","RETIRED","D £7,500 - £9,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.17962 +"478","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Strongly disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 6 AND 12 MONTHS","LESS THAN AROUND ONCE A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",51,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.24617 +"479","Labour",NA,"9","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","65+","65-74",73,"AB","B","RETIRED","WEST MIDLANDS","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.60713 +"480","Would not vote",NA,"3","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Don't know","Tend to disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 6 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","No","Yes","No","No","No","No","No","MALE","18-24","18-24",19,"C1","C1","FULL TIME STUDENT","WEST MIDLANDS","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH",NA,"YES","FULL TIME STUDENT","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.48022 +"481","Undecided","Labour","9","7","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",42,"C1","C1","SELF-EMPLOYED","WEST MIDLANDS","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","YES","SELF-EMPLOYED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.88457 +"482","Would not vote",NA,"1 (Absolutely certain not to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Very interested","A fair amount","Nothing at all","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to disagree","Strongly disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 6 AND 12 MONTHS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","18-24","18-24",19,"C1","C1","FULL TIME STUDENT","WEST MIDLANDS","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE OTHER",NA,"YES","FULL TIME STUDENT","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.48022 +"483","Labour",NA,"5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","FEMALE","35-44","35-44",36,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","WID/DIV/SEP - PARENT/GUARDIAN","4","3","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.44274 +"484","Labour",NA,"10 (Absolutely certain to vote)","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Don't know","Neither agree nor disagree","Strongly agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - have never seen it","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Don't know","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","75+",84,"C2","C2","RETIRED","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.52705 +"485","Conservative",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","FEMALE","65+","75+",76,"C1","C1","RETIRED","WEST MIDLANDS","OTHER","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.36702 +"486","Undecided","Would not vote","7","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 6 AND 12 MONTHS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",38,"DE","D","NOT WORKING - HOUSEWIFE","WEST MIDLANDS","MASTERS/PHD OR EQUIVALENT","NON-WHITE","BLACK AFRICAN","Would not vote","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.47276 +"487","Undecided","Undecided","1 (Absolutely certain not to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 4 AND 5 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",36,"DE","D","NOT WORKING - HOUSEWIFE","WEST MIDLANDS","OTHER","WHITE","WHITE BRITISH","Undecided","NO","RETIRED","REFUSED","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.08081 +"488","Undecided","Undecided","4","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","BETWEEN 6 AND 12 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",22,"DE","E","UNEMPLOYED AND SEEKING WORK","WEST MIDLANDS","OTHER","WHITE","WHITE BRITISH","Undecided","YES","UNEMPLOYED AND SEEKING WORK","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.76071 +"489","Conservative",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",60,"C1","C1","RETIRED","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","E £9,500 - £11,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.68172 +"490","Labour",NA,"10 (Absolutely certain to vote)","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",60,"C2","C2","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE IRISH","Labour","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.6286 +"491","Undecided","Undecided","Don't know","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","75+",80,"C2","C2","RETIRED","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE IRISH","Undecided","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.57753 +"492","Labour",NA,"10 (Absolutely certain to vote)","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 3 AND 4 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","60-64","55-64",64,"C2","C2","RETIRED","LONDON","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN INDIAN","Labour","YES","RETIRED","F £11,500 - £13,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.36286 +"493","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Don't know","Don't know","Tend to agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",72,"C2","C2","RETIRED","WALES","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.7932 +"494","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Don't know","Tend to disagree","Strongly disagree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Strongly disagree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",85,"DE","D","RETIRED","WALES","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","H £15,500 - £17,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.48396 +"495","Labour",NA,"5","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Tend to disagree","Don't know","Strongly disagree","Neither agree nor disagree","Tend to disagree","Some influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Strongly disagree","Strongly agree","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",59,"C2","C2","SELF-EMPLOYED","WALES","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","SELF-EMPLOYED","A UP TO £4,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.84456 +"496","Undecided","Undecided","7","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","FEMALE","35-44","35-44",39,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN BANGLADESHI","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.1686 +"497","Undecided","Undecided","10 (Absolutely certain to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",33,"DE","E","NOT WORKING - HOUSEWIFE","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","ASIAN OTHER","Undecided","NO","NOT IN PAID WORK FOR OTHER REASON","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","3","2","YES","AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.43567 +"498","Undecided","Labour","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to agree","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","18-24","18-24",22,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.77394 +"499","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","65+","65-74",71,"C2","C2","RETIRED","EASTERN","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.64184 +"500","Undecided","Undecided","10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","55-59","55-64",56,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","D £7,500 - £9,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.54922 +"501","Refused","Refused","10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Needs a great deal of improvement","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Tend to disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","DON'T KNOW","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","75+",75,"C1","C1","RETIRED","SCOTLAND","OTHER","WHITE","WHITE BRITISH","Refused","YES","RETIRED","D £7,500 - £9,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.58268 +"502","Scottish/Welsh Nationalist",NA,"8","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","Not very much","Could be improved quite a lot","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Not very much influence","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","Yes - in full","Tend to agree","Strongly disagree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",60,"DE","E","UNEMPLOYED AND SEEKING WORK","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","UNEMPLOYED AND SEEKING WORK","C £6,500 - £7,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.44696 +"503","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Nothing at all","Could be improved quite a lot","Tend to disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Tend to disagree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Tend to disagree","Tend to agree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","MALE","65+","65-74",65,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SCOTLAND","OTHER","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.32522 +"504","Conservative",NA,"10 (Absolutely certain to vote)","6","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","No","Yes","Yes","Yes","No","Yes","Yes","FEMALE","65+","65-74",74,"AB","B","RETIRED","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.94905 +"505","Labour",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","No influence at all","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Tend to disagree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",59,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","OTHER","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.74993 +"506","Scottish/Welsh Nationalist",NA,"5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Some influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","45-54","45-54",50,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","WID/DIV/SEP - PARENT/GUARDIAN","2","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.38844 +"507","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Not very much influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","Yes","Yes","No","No","No","No","No","FEMALE","35-44","35-44",43,"AB","A","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","EASTERN","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.58777 +"508","UK Independence Party",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A great deal","A great deal","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","No influence at all","No influence at all","Fairly involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Strongly disagree","Strongly agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 4 AND 5 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",48,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","UK Independence Party","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","H £15,500 - £17,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.4935 +"509","Conservative",NA,"8","5","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",56,"AB","B","SELF-EMPLOYED","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","SELF-EMPLOYED","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.85344 +"510","Undecided","Undecided","5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Tend to disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","45-54","45-54",48,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN OTHER","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.55404 +"511","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Not very much influence","No influence at all","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Tend to disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",26,"DE","E","NOT WORKING - HOUSEWIFE","LONDON","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN PAKISTANI",NA,"YES","NOT WORKING - HOUSEWIFE","G £13,500 - £15,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","3","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.43567 +"512","Would not vote",NA,"Don't know","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Works extremely well and could not be improved","Don't know","Don't know","Don't know","Don't know","Don't know","Not very much influence","Don't know","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Don't know","Don't know","Don't know","Don't know","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",40,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","NO FORMAL QUALIFICATIONS","NON-WHITE","ARAB",NA,"YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","WID/DIV/SEP - PARENT/GUARDIAN","4","3","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.55215 +"513","Undecided","Labour","4","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Nothing at all","Needs a great deal of improvement","Tend to agree","Don't know","Don't know","Don't know","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",65,"C2","C2","RETIRED","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.04417 +"514","Labour",NA,"9","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","35-44","35-44",36,"AB","B","SELF-EMPLOYED","NORTH WEST","MASTERS/PHD OR EQUIVALENT","NON-WHITE","BLACK AFRICAN","Labour","YES","SELF-EMPLOYED","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.47198 +"515","Undecided","Undecided","10 (Absolutely certain to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 1 AND 2 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",29,"DE","E","NOT WORKING - HOUSEWIFE","NORTH WEST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Undecided","YES","NOT WORKING - HOUSEWIFE","E £9,500 - £11,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","5+","4","YES","AGED 0-3","AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.91719 +"516","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",58,"AB","B","RETIRED","WALES","OTHER","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.56117 +"517","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Strongly disagree","Strongly agree","Strongly agree","No influence at all","No influence at all","Not very involved","Not at all involved","no Yes - where living now","Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","55-59","55-64",57,"C2","C2","SELF-EMPLOYED","WALES","OTHER","WHITE","WHITE BRITISH","Labour","YES","SELF-EMPLOYED","D £7,500 - £9,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.66511 +"518","Labour",NA,"10 (Absolutely certain to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",67,"DE","E","RETIRED","WALES","OTHER","WHITE","WHITE BRITISH","Labour","YES","RETIRED","E £9,500 - £11,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.55616 +"519","Labour",NA,"9","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Don't know","Tend to disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Don't know","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 6 MONTHS","LESS THAN AROUND ONCE A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",59,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.06943 +"520","Labour",NA,"6","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Tend to disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to disagree","Strongly disagree","Tend to disagree","Strongly disagree","Strongly disagree","Strongly disagree","Tend to disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",39,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EAST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.65429 +"521","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","25-34","25-34",28,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.87802 +"522","Labour",NA,"9","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to disagree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","18-24","18-24",20,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE OTHER","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.1307 +"523","UK Independence Party",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Strongly disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","65+","75+",76,"C1","C1","RETIRED","SOUTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","UK Independence Party","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.91959 +"524","Conservative",NA,"10 (Absolutely certain to vote)","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Strongly disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","45-54","45-54",52,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","OTHER","NON-WHITE","BLACK AFRICAN","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.50454 +"525","Refused","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A great deal","A great deal","Needs a great deal of improvement","Strongly disagree","Tend to agree","Strongly disagree","Tend to agree","Strongly agree","Not very much influence","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Tend to disagree","Strongly agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",28,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.45309 +"526","Undecided","Undecided","10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Don't know","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","60-64","55-64",60,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","OTHER","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.00535 +"527","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Strongly disagree","Tend to disagree","Strongly disagree","Neither agree nor disagree","No influence at all","No influence at all","Very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","45-54","45-54",48,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.03656 +"528","UK Independence Party",NA,"10 (Absolutely certain to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","60-64","55-64",62,"C1","C1","RETIRED","SOUTH EAST","OTHER","WHITE","WHITE BRITISH","UK Independence Party","YES","RETIRED","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.94119 +"529","Undecided","Conservative","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to disagree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","LESS THAN 3 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",22,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.16131 +"530","Labour",NA,"2","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 2 AND 3 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",54,"DE","D","UNEMPLOYED AND SEEKING WORK","YORKS AND HUMBR","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","UNEMPLOYED AND SEEKING WORK","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.94829 +"531","Labour",NA,"1 (Absolutely certain not to vote)","4","no Contacted a local councillor or MP/MSP/WAM","Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not very much influence","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to disagree","Strongly disagree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",49,"C2","C2","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","YORKS AND HUMBR","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.7788 +"532","Undecided","Liberal Democrats (Lib Dem)","5","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A fair amount","Needs a great deal of improvement","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","No","Yes","No","No","No","No","No","MALE","25-34","25-34",28,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.95375 +"533","Refused","Refused","1 (Absolutely certain not to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Tend to agree","Tend to disagree","Strongly disagree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","60-64","55-64",63,"C1","C1","RETIRED","YORKS AND HUMBR","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Refused","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.58106 +"534","Labour",NA,"6","6","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","A great deal","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",24,"DE","E","FULL TIME STUDENT","WEST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Labour","NO","NOT IN PAID WORK FOR OTHER REASON","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.3247 +"535","Labour",NA,"6","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Nothing at all","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Some influence","Not very much influence","Not at all involved","Very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Fairly strong","No - have never seen it","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",29,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","OTHER","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.85498 +"536","Labour",NA,"5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","A fair amount","Works extremely well and could not be improved","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Some influence","No influence at all","Very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",38,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.58537 +"537","Undecided","Labour","10 (Absolutely certain to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","25-34","25-34",30,"AB","A","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN BANGLADESHI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.89324 +"538","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",31,"DE","D","UNEMPLOYED AND SEEKING WORK","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","BLACK CARIBBEAN","Labour","YES","UNEMPLOYED AND SEEKING WORK","B £4,500 - £6,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","3","2","YES","no AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.62923 +"539","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","A great deal of influence","A great deal of influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Strongly disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",72,"DE","E","RETIRED","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","BLACK CARIBBEAN","Labour","YES","RETIRED","H £15,500 - £17,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.30321 +"540","Labour",NA,"7","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Some influence","No influence at all","Not very involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",45,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","OTHER","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","7","YES","AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.65466 +"541","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","A great deal of influence","A great deal of influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - have never seen it","Don't know","Tend to agree","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Strongly agree","Strongly agree","Don't know","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 4 AND 5 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",38,"DE","D","NOT WORKING - HOUSEWIFE","LONDON","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN BANGLADESHI","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.57274 +"542","Undecided","Liberal Democrats (Lib Dem)","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 1 AND 2 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",35,"C1","C1","NOT WORKING - HOUSEWIFE","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE OTHER","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.03734 +"543","Labour",NA,"8","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",27,"DE","E","NOT IN PAID WORK FOR OTHER REASON","LONDON","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","NON-WHITE","BLACK AFRICAN","Labour","YES","NOT IN PAID WORK FOR OTHER REASON","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","2","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.43567 +"544","Labour",NA,"5","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Neither agree nor disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","25-34","25-34",34,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","BLACK AFRICAN","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.02419 +"545","Labour",NA,"7","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","Not very much influence","Fairly involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",34,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","MASTERS/PHD OR EQUIVALENT","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.79706 +"546","Conservative",NA,"9","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","FEMALE","35-44","35-44",40,"DE","E","NOT IN PAID WORK FOR OTHER REASON","LONDON","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","NON-WHITE","BLACK CARIBBEAN","Conservative","YES","NOT IN PAID WORK FOR OTHER REASON","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.49061 +"547","Undecided","Undecided","10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Strongly disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","25-34","25-34",26,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.90605 +"548","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",31,"C2","C2","NOT WORKING - HOUSEWIFE","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH",NA,"NO","REFUSED","REFUSED","REFUSED",NA,"PRE FAMILY","MARRIED - PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.09373 +"549","Labour",NA,"8","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Not very much influence","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","MALE","18-24","18-24",21,"C1","C1","FULL TIME STUDENT","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.86567 +"550","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",28,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.6597 +"551","Labour",NA,"4","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","A fair amount","Nothing at all","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","no Yes - where living now","no Yes - another address","no No","Don't know","Don't know","No - have never seen it","Don't know","Neither agree nor disagree","Don't know","Don't know","Don't know","Tend to agree","Don't know","Don't know","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",33,"AB","B","NOT WORKING - HOUSEWIFE","WEST MIDLANDS","MASTERS/PHD OR EQUIVALENT","NON-WHITE","ASIAN PAKISTANI","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.40431 +"552","Undecided","Undecided","2","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Nothing at all","Don't know","Neither agree nor disagree","Don't know","Don't know","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to disagree","Tend to disagree","Don't know","Strongly disagree","Tend to agree","Neither agree nor disagree","Don't know","Tend to disagree","Neither agree nor disagree","Don't know","Neither agree nor disagree","Don't know","Don't know","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Don't know","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",19,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.53845 +"553","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Not very much influence","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","No","Yes","Yes","Yes","No","Yes","Yes","MALE","55-59","55-64",59,"AB","B","SELF-EMPLOYED","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","YES","SELF-EMPLOYED","A UP TO £4,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.7577 +"554","Conservative",NA,"10 (Absolutely certain to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 4 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",64,"C2","C2","RETIRED","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.32281 +"555","Would not vote",NA,"10 (Absolutely certain to vote)","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Don't know","Tend to agree","Tend to disagree","Strongly disagree","Strongly disagree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","18-24","18-24",18,"C1","C1","FULL TIME STUDENT","LONDON","GCSE/O-LEVEL/CSE","NON-WHITE","BLACK AFRICAN",NA,"NO","REFUSED","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.41532 +"556","Conservative",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",43,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.82016 +"557","Labour",NA,"10 (Absolutely certain to vote)","9","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A great deal","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",62,"AB","A","SELF-EMPLOYED","NORTH WEST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","YES","SELF-EMPLOYED","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.07465 +"558","Conservative",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Not very much influence","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly disagree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",44,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","SINGLE - NOT PARENT/GUARDIAN","3","2","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.71102 +"559","Undecided","Labour","3","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",21,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","BELONGS TO HOUSING ASSOCIATION","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.49165 +"560","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","65+","75+",89,"DE","D","RETIRED","WALES","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","NO","REFUSED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.01131 +"561","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","No","Yes","No","No","No","No","No","FEMALE","45-54","45-54",50,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.99837 +"562","Labour",NA,"10 (Absolutely certain to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",43,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","YORKS AND HUMBR","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","H £15,500 - £17,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.37125 +"563","Labour",NA,"9","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",21,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","H £15,500 - £17,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.81479 +"564","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",71,"C2","C2","RETIRED","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.18795 +"565","British National Party (BNP)",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Nothing at all","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","No influence at all","No influence at all","Very involved","Very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",24,"DE","E","NOT WORKING - HOUSEWIFE","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","British National Party (BNP)","YES","NOT WORKING - HOUSEWIFE","D £7,500 - £9,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","2","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.02939 +"566","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","No influence at all","Not at all involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Strongly disagree","Tend to agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Tend to disagree","Strongly disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Tend to agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",24,"C1","C1","FULL TIME STUDENT","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE OTHER","Labour","YES","FULL TIME STUDENT","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.54037 +"567","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","No","Yes","No","No","No","No","No","FEMALE","18-24","18-24",20,"C1","C1","FULL TIME STUDENT","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","FULL TIME STUDENT","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.63568 +"568","Undecided","Liberal Democrats (Lib Dem)","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","MALE","65+","65-74",70,"AB","B","RETIRED","WALES","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.4186 +"569","Undecided","Undecided","2","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Don't know","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Don't know","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",20,"C1","C1","FULL TIME STUDENT","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","YES","FULL TIME STUDENT","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.78135 +"570","Liberal Democrats (Lib Dem)",NA,"8","8","no Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",79,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","WALES","OTHER","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.54829 +"571","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Not very much influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",45,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","MASTERS/PHD OR EQUIVALENT","NON-WHITE","MIXED WHITE AND ASIAN","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.48726 +"572","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Nothing at all","Nothing at all","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","No influence at all","No influence at all","Fairly involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Don't know","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Don't know","Don't know","Don't know","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",39,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN OTHER",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","H £15,500 - £17,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.27292 +"573","UK Independence Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Strongly disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Not very much influence","No influence at all","Fairly involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",19,"C1","C1","FULL TIME STUDENT","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","ASIAN INDIAN","UK Independence Party","YES","FULL TIME STUDENT","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.14483 +"574","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Not very much influence","Some influence","Very involved","Very involved","no Yes - where living now","Yes - another address","no No","no Don't know","Very strong","Yes - in full","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","No","Yes","No","No","No","No","No","FEMALE","18-24","18-24",21,"C1","C1","FULL TIME STUDENT","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","FULL TIME STUDENT","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.54037 +"575","Labour",NA,"7","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Not very much influence","Not very involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",21,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.07314 +"576","Labour",NA,"8","2","Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Some influence","No influence at all","Very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","FEMALE","35-44","35-44",44,"AB","B","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","NORTH WEST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.46401 +"577","Labour",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",57,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","A UP TO £4,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.05294 +"578","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A great deal","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Strongly disagree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","No","Yes","No","No","No","No","No","MALE","65+","75+",80,"DE","E","RETIRED","NORTH WEST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.95898 +"579","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",44,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - NOT PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.89311 +"580","Undecided","Undecided","10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",25,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","OTHER","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.48771 +"581","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",40,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","NORTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.48532 +"582","Refused","Refused","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Strongly disagree","Don't know","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","No influence at all","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Don't know","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",27,"C2","C2","NOT WORKING - HOUSEWIFE","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","OTHER","Refused","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OTHER",NA,"PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.42793 +"583","Undecided","Conservative","9","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",33,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","OTHER",NA,"FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.58494 +"584","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",40,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","OTHER",NA,"FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.68362 +"585","Undecided","Undecided","5","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","25-34","25-34",30,"C1","C1","NOT WORKING - HOUSEWIFE","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","OTHER","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","OTHER",NA,"FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.35167 +"586","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","NO","BETWEEN 2 AND 3 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",24,"C1","C1","NOT WORKING - HOUSEWIFE","SOUTH WEST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","NON-WHITE","ASIAN OTHER",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","OTHER",NA,"FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.42642 +"587","Labour",NA,"10 (Absolutely certain to vote)","7","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to disagree","Strongly disagree","Strongly disagree","Tend to agree","Tend to agree","No influence at all","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","Yes","Yes","Yes","No","No","Yes","No","FEMALE","35-44","35-44",37,"C1","C1","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","SOUTH EAST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.23458 +"588","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",70,"C2","C2","RETIRED","SOUTH EAST","OTHER","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.87625 +"589","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Strongly disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",45,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.88067 +"590","Green Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",57,"C2","C2","SELF-EMPLOYED","WEST MIDLANDS","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Green Party","YES","SELF-EMPLOYED","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.66284 +"591","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Nothing at all","Nothing at all","Could be improved quite a lot","Strongly disagree","Don't know","Don't know","Neither agree nor disagree","Don't know","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",63,"AB","B","RETIRED","EASTERN","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH",NA,"NO","RETIRED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.21096 +"592","UK Independence Party",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Tend to disagree","Tend to agree","Strongly disagree","Tend to disagree","No influence at all","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","75+",75,"DE","E","RETIRED","SOUTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","UK Independence Party","NO","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.73513 +"593","Labour",NA,"8","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Some influence","Some influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","25-34","25-34",32,"C1","C1","UNEMPLOYED AND SEEKING WORK","EASTERN","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","ASIAN OTHER","Labour","NO","SELF-EMPLOYED","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.67973 +"594","Would not vote",NA,"5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to disagree","Neither agree nor disagree","Strongly disagree","Tend to disagree","Strongly agree","Some influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",63,"AB","A","RETIRED","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH",NA,"YES","RETIRED","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.98477 +"595","Undecided","Undecided","2","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","45-54","45-54",45,"AB","B","SELF-EMPLOYED","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","YES","SELF-EMPLOYED","O MORE THAN £100,000","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.14237 +"596","Conservative",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Strongly disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","No","Yes","No","No","Yes","Yes","Yes","FEMALE","45-54","45-54",50,"AB","B","NOT WORKING - HOUSEWIFE","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","NOT WORKING - HOUSEWIFE","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.85126 +"597","Undecided","Undecided","8","8","no Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Not very much influence","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","Yes","Yes","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",65,"C1","C1","RETIRED","SOUTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Undecided","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.65246 +"598","Labour",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 3 AND 4 YEARS","2 OR 3 TIMES A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","55-59","55-64",59,"C1","C1","RETIRED","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.81723 +"599","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Strongly disagree","Tend to agree","Strongly disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","MALE","65+","75+",81,"C1","C1","RETIRED","SOUTH WEST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Undecided","YES","RETIRED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.82892 +"600","Would not vote",NA,"1 (Absolutely certain not to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Not very much","Could be improved quite a lot","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Very involved","Not very involved","no Yes - where living now","no Yes - another address","no No","Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Don't know","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 6 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",20,"DE","E","NOT WORKING - HOUSEWIFE","WALES","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"YES","NOT WORKING - HOUSEWIFE","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.68733 +"601","Refused","Refused","1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",30,"AB","A","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Refused","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.72532 +"602","Labour",NA,"6","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","No influence at all","No influence at all","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Don't know","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",52,"C1","C1","FULL TIME STUDENT","WALES","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","FULL TIME STUDENT","C £6,500 - £7,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.41129 +"603","Would not vote",NA,"1 (Absolutely certain not to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",52,"DE","E","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","E £9,500 - £11,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.46236 +"604","Labour",NA,"10 (Absolutely certain to vote)","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",19,"C1","C1","FULL TIME STUDENT","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.41227 +"605","Labour",NA,"10 (Absolutely certain to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Not very much influence","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 2 AND 3 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","35-44","35-44",40,"DE","E","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","F £11,500 - £13,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.35347 +"606","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Tend to agree","Strongly disagree","Strongly agree","Tend to agree","Some influence","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly disagree","Tend to disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","45-54","45-54",53,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.93619 +"607","Labour",NA,"10 (Absolutely certain to vote)","5","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","FEMALE","65+","75+",75,"DE","E","RETIRED","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","C £6,500 - £7,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.5962 +"608","Labour",NA,"10 (Absolutely certain to vote)","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved quite a lot","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",63,"DE","D","RETIRED","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","RETIRED","C £6,500 - £7,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.65204 +"609","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 2 AND 3 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",69,"DE","E","RETIRED","SOUTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.13166 +"610","Labour",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Some influence","Not very much influence","Fairly involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","35-44","35-44",43,"C1","C1","UNEMPLOYED AND SEEKING WORK","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE OTHER","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.34058 +"611","Undecided","Conservative","8","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Nothing at all","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",58,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","NORTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.57767 +"612","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","45-54","45-54",54,"AB","B","NOT WORKING - HOUSEWIFE","NORTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","RETIRED","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.39656 +"613","British National Party (BNP)",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 1 AND 2 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",35,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","OTHER","WHITE","WHITE BRITISH","British National Party (BNP)","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.37371 +"614","Conservative",NA,"10 (Absolutely certain to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","A great deal","A fair amount","Could be improved in small ways but mainly works well","Strongly disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Tend to disagree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Strongly disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 4 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","Yes","Yes","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","75+",82,"DE","D","RETIRED","EASTERN","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.764 +"615","Undecided","Conservative","7","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",64,"DE","D","RETIRED","EASTERN","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.05678 +"616","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Nothing at all","Could be improved quite a lot","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",55,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","H £15,500 - £17,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.19093 +"617","Undecided","Undecided","8","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",42,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.3865 +"618","Refused","Labour","5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Neither agree nor disagree","Don't know","Don't know","Don't know","Don't know","Some influence","Some influence","Not at all involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Don't know","Tend to disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","25-34","25-34",27,"DE","E","NOT IN PAID WORK FOR OTHER REASON","LONDON","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN CHINESE","Labour","NO","NOT WORKING - HOUSEWIFE","G £13,500 - £15,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.50915 +"619","Labour",NA,"10 (Absolutely certain to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","LESS THAN AROUND ONCE A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",71,"AB","B","RETIRED","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN OTHER","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","B £4,500 - £6,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.60468 +"620","Labour",NA,"5","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - but have seen it before then","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Don't know","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","25-34","25-34",30,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","NO FORMAL QUALIFICATIONS","WHITE","WHITE OTHER","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.9485 +"621","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",44,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","WEST MIDLANDS","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.31229 +"622","Green Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Strongly disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",67,"AB","B","RETIRED","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Green Party","YES","RETIRED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.90319 +"623","Labour",NA,"7","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","No influence at all","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","45-54","45-54",49,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.95198 +"624","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Not very much","Needs a great deal of improvement","Tend to disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Tend to agree","No influence at all","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",43,"DE","D","NOT IN PAID WORK FOR OTHER REASON","NORTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","5","YES","AGED 0-3","AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.22368 +"625","Labour",NA,"8","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","No influence at all","Not very much influence","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 6 MONTHS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",45,"DE","E","NOT IN PAID WORK FOR OTHER REASON","NORTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","NOT IN PAID WORK FOR OTHER REASON","D £7,500 - £9,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.05001 +"626","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Not very much influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Strongly agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",70,"C2","C2","RETIRED","EASTERN","OTHER","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.95684 +"627","UK Independence Party",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - but have seen it before then","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",67,"C2","C2","RETIRED","EASTERN","OTHER","WHITE","WHITE BRITISH","UK Independence Party","YES","RETIRED","H £15,500 - £17,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.64184 +"628","Undecided","Labour","10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",57,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.87019 +"629","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A fair amount","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","No influence at all","No influence at all","Not very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","45-54","45-54",48,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.10445 +"630","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Tend to disagree","Strongly disagree","Tend to agree","Strongly agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",63,"C1","C1","RETIRED","WALES","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.47689 +"631","Undecided","Labour","1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Some influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",42,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","WALES","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.90479 +"632","Undecided","Labour","10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",67,"AB","A","RETIRED","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.90781 +"633","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Strongly disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","A great deal of influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",49,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","NORTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.96554 +"634","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","65+","65-74",70,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","NO","RETIRED","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.73552 +"635","Labour",NA,"10 (Absolutely certain to vote)","4","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Not very much influence","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Don't know","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Strongly disagree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","65+","65-74",66,"AB","B","RETIRED","LONDON","OTHER","NON-WHITE","MIXED OTHER","Labour","NO","RETIRED","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.47963 +"636","Labour",NA,"10 (Absolutely certain to vote)","2","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","45-54","45-54",53,"AB","B","SELF-EMPLOYED","LONDON","OTHER","WHITE","WHITE OTHER","Labour","NO","SELF-EMPLOYED","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.30292 +"637","Labour",NA,"10 (Absolutely certain to vote)","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Not very much influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 4 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","45-54","45-54",49,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.21497 +"638","Conservative",NA,"10 (Absolutely certain to vote)","6","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","65+","65-74",65,"AB","B","RETIRED","WEST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","F £11,500 - £13,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.74626 +"639","Would not vote",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",71,"AB","B","RETIRED","SOUTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH",NA,"YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.82614 +"640","Refused","Refused","10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Not very much influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","65+","75+",82,"C1","C1","RETIRED","SOUTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Refused","YES","RETIRED","G £13,500 - £15,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.86015 +"641","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to agree","Strongly disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 4 AND 5 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","No","Yes","Yes","Yes","No","Yes","Yes","MALE","65+","65-74",69,"C1","C1","RETIRED","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","RETIRED","H £15,500 - £17,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.26726 +"642","Undecided","Undecided","5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","25-34","25-34",34,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.77064 +"643","Undecided","Scottish/Welsh Nationalist","10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Don't know","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","No","Yes","No","No","No","No","No","FEMALE","65+","65-74",65,"DE","E","RETIRED","SCOTLAND","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","RETIRED","C £6,500 - £7,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.41701 +"644","Undecided","Undecided","10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",23,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","OTHER","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","G £13,500 - £15,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.79529 +"645","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Strongly agree","Tend to agree","Strongly disagree","Tend to disagree","Strongly disagree","Some influence","No influence at all","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","60-64","55-64",60,"DE","E","RETIRED","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","RETIRED","C £6,500 - £7,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.52233 +"646","Undecided","Undecided","8","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to agree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","Yes","Yes","Yes","Yes","No","Yes","Yes","MALE","65+","75+",80,"DE","E","RETIRED","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","YES","RETIRED","B £4,500 - £6,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.3664 +"647","Undecided","Labour","5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Not very much","Needs a great deal of improvement","Tend to agree","Tend to agree","Strongly disagree","Neither agree nor disagree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Strongly disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",56,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","G £13,500 - £15,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.51071 +"648","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","Yes - in full","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",24,"DE","E","UNEMPLOYED AND SEEKING WORK","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","UNEMPLOYED AND SEEKING WORK","B £4,500 - £6,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","2","1","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.62982 +"649","Undecided","Undecided","8","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Not very much","Needs a great deal of improvement","Tend to disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly disagree","Strongly disagree","Tend to agree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",46,"DE","E","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","C £6,500 - £7,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.41646 +"650","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","No influence at all","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",47,"DE","E","UNEMPLOYED AND SEEKING WORK","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","UNEMPLOYED AND SEEKING WORK","B £4,500 - £6,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.47937 +"651","Undecided","Undecided","10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Tend to disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Some influence","No influence at all","Fairly involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Tend to disagree","Strongly disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",21,"C2","C2","FULL TIME STUDENT","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.37731 +"652","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Some influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to disagree","Tend to disagree","Strongly disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","55-59","55-64",59,"C1","C1","RETIRED","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.77164 +"653","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","THE SUN","no DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","35-44","35-44",40,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.59169 +"654","Undecided","Refused","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Strongly disagree","Tend to agree","Strongly disagree","Strongly agree","Strongly agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","FEMALE","35-44","35-44",44,"AB","B","NOT WORKING - HOUSEWIFE","SOUTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Refused","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.68526 +"655","Conservative",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Not very much influence","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 4 AND 5 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","65+","65-74",69,"C1","C1","RETIRED","SOUTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.70206 +"656","UK Independence Party",NA,"10 (Absolutely certain to vote)","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","Not very much","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","65+","65-74",67,"DE","D","RETIRED","YORKS AND HUMBR","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","UK Independence Party","YES","RETIRED","F £11,500 - £13,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.55336 +"657","Conservative",NA,"7","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Strongly disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","No influence at all","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",72,"C1","C1","RETIRED","YORKS AND HUMBR","OTHER","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","F £11,500 - £13,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.79423 +"658","Undecided","Undecided","10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A great deal","Needs a great deal of improvement","Strongly disagree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","65+","65-74",73,"AB","B","RETIRED","YORKS AND HUMBR","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Undecided","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.62692 +"659","UK Independence Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved quite a lot","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","55-59","55-64",55,"AB","B","SELF-EMPLOYED","YORKS AND HUMBR","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","UK Independence Party","YES","SELF-EMPLOYED","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.68376 +"660","Undecided","Liberal Democrats (Lib Dem)","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A great deal","Could be improved quite a lot","Tend to disagree","Tend to agree","Strongly disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","60-64","55-64",63,"AB","B","RETIRED","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","RETIRED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.68376 +"661","Undecided","Undecided","Don't know","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",25,"C2","C2","UNEMPLOYED AND SEEKING WORK","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE OTHER","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","C £6,500 - £7,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.07019 +"662","Undecided","Undecided","5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Nothing at all","A great deal","Needs a great deal of improvement","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 4 AND 5 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",19,"DE","E","UNEMPLOYED AND SEEKING WORK","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE OTHER","Undecided","YES","UNEMPLOYED AND SEEKING WORK","C £6,500 - £7,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.35643 +"663","Labour",NA,"7","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",27,"DE","E","UNEMPLOYED AND SEEKING WORK","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","UNEMPLOYED AND SEEKING WORK","C £6,500 - £7,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.11865 +"664","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Needs a great deal of improvement","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Some influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","Yes","Yes","No","No","No","No","No","FEMALE","55-59","55-64",59,"DE","D","SELF-EMPLOYED","WALES","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","NO","SELF-EMPLOYED","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.87605 +"665","Undecided","Undecided","8","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Nothing at all","Needs a great deal of improvement","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",60,"C1","C1","RETIRED","NORTH WEST","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN CHINESE","Undecided","YES","RETIRED","C £6,500 - £7,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.2746 +"666","Refused","Liberal Democrats (Lib Dem)","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",54,"DE","D","UNEMPLOYED AND SEEKING WORK","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.35485 +"667","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Works extremely well and could not be improved","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Tend to disagree","Tend to agree","Strongly disagree","Strongly disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",18,"DE","E","UNEMPLOYED AND SEEKING WORK","NORTH WEST","GCSE/O-LEVEL/CSE","NON-WHITE","MIXED WHITE/BLACK CARIBBEAN",NA,"NO","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","5+","7","YES","AGED 0-3","AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.59332 +"668","Undecided","Labour","6","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Nothing at all","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","25-34","25-34",29,"DE","E","NOT IN PAID WORK FOR OTHER REASON","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","ASIAN INDIAN","Labour","NO","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.48756 +"669","Labour",NA,"8","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","Not very much","Needs a great deal of improvement","Strongly agree","Tend to disagree","Strongly disagree","Tend to agree","Strongly disagree","No influence at all","No influence at all","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly disagree","Tend to disagree","Tend to agree","Tend to disagree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",22,"DE","D","FULL TIME STUDENT","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.29831 +"670","Refused","Refused","5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","75+",75,"DE","D","RETIRED","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","WHITE","WHITE OTHER","Refused","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.46679 +"671","Conservative",NA,"8","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",36,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","OTHER","WHITE","WHITE OTHER","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.34374 +"672","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Some influence","Some influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",26,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.34415 +"673","Would not vote",NA,"3","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",70,"DE","E","RETIRED","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","RETIRED","D £7,500 - £9,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.94704 +"674","Conservative",NA,"10 (Absolutely certain to vote)","8","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",73,"C2","C2","RETIRED","WEST MIDLANDS","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.62783 +"675","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 1 AND 2 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","65+","65-74",66,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.87033 +"676","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Don't know","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Don't know","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"DON'T KNOW","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",22,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","WEST MIDLANDS","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.95371 +"677","Conservative",NA,"9","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",67,"AB","B","RETIRED","SOUTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","F £11,500 - £13,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.2316 +"678","Undecided","Undecided","2","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Neither agree nor disagree","Don't know","Tend to agree","Tend to agree","Tend to agree","Not very much influence","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",19,"C1","C1","FULL TIME STUDENT","SOUTH EAST","STILL STUDYING","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","SINGLE - NOT PARENT/GUARDIAN","4","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.63397 +"679","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",50,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","OTHER","NON-WHITE","MIXED WHITE/BLACK CARIBBEAN",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","OTHER",NA,"POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.71632 +"680","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",51,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.97642 +"681","Undecided","Undecided","8","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","A great deal of influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",40,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN INDIAN","Undecided","NO","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","C £6,500 - £7,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","4","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.31453 +"682","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to disagree","Some influence","Not very much influence","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",70,"AB","B","RETIRED","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","G £13,500 - £15,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.46884 +"683","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved in small ways but mainly works well","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","MALE","65+","75+",76,"AB","B","RETIRED","SCOTLAND","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","YES","RETIRED","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.41194 +"684","Labour",NA,"8","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Not very much influence","No influence at all","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",63,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","OTHER","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.22343 +"685","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 1 AND 2 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","35-44","35-44",35,"DE","E","NOT IN PAID WORK FOR OTHER REASON","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Undecided","NO","NOT IN PAID WORK FOR OTHER REASON","REFUSED","BELONGS TO HOUSING ASSOCIATION","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.35347 +"686","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Don't know","Neither agree nor disagree","Tend to agree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",56,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","EASTERN","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"NO","RETIRED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.70003 +"687","Labour",NA,"7","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Strongly disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","NO","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",20,"DE","D","FULL TIME STUDENT","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.52939 +"688","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 4 AND 5 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",66,"C2","C2","RETIRED","EASTERN","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.65832 +"689","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","60-64","55-64",64,"AB","B","RETIRED","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.07511 +"690","Labour",NA,"10 (Absolutely certain to vote)","9","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","A fair amount","Works extremely well and could not be improved","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","65+","65-74",66,"DE","D","RETIRED","EAST MIDLANDS","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","C £6,500 - £7,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.59958 +"691","Labour",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Nothing at all","Could be improved in small ways but mainly works well","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Strongly disagree","Strongly disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","25-34","25-34",31,"DE","D","UNEMPLOYED AND SEEKING WORK","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","D £7,500 - £9,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.61509 +"692","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","65+","65-74",65,"AB","B","RETIRED","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","RETIRED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.83253 +"693","Undecided","Undecided","10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","FEMALE","45-54","45-54",52,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","NO","SELF-EMPLOYED","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.61544 +"694","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Some influence","Not at all involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly agree","Tend to agree","Strongly disagree","Strongly disagree","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","Strongly disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","65+","75+",79,"DE","E","RETIRED","SOUTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","RETIRED","D £7,500 - £9,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.73513 +"695","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Works extremely well and could not be improved","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Strongly disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",20,"AB","B","FULL TIME STUDENT","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.36487 +"696","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A great deal","A great deal","Needs a great deal of improvement","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Some influence","Some influence","Very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","Yes","Yes","Yes","MALE","45-54","45-54",51,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.79438 +"697","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A great deal","A great deal","Could be improved quite a lot","Tend to disagree","Strongly disagree","Strongly disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","Yes","Yes","Yes","MALE","65+","75+",82,"AB","B","RETIRED","SCOTLAND","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.41194 +"698","Labour",NA,"9","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Some influence","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Tend to agree","Strongly disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","55-59","55-64",57,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.60439 +"699","Undecided","Labour","3","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",41,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","WID/DIV/SEP - PARENT/GUARDIAN","3","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.55986 +"700","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",51,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.6426 +"701","Undecided","Conservative","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","Yes","Yes","Yes","FEMALE","65+","65-74",74,"AB","B","RETIRED","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.46884 +"702","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","A fair amount","Not very much","Could be improved quite a lot","Tend to agree","Tend to disagree","Strongly disagree","Tend to agree","Strongly disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","LESS THAN AROUND ONCE A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",54,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","A UP TO £4,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.82638 +"703","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Very interested","A fair amount","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",69,"DE","E","RETIRED","WALES","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.45247 +"704","Undecided","Liberal Democrats (Lib Dem)","10 (Absolutely certain to vote)","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",80,"AB","B","RETIRED","WALES","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","REFUSED","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.54829 +"705","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to disagree","Tend to agree","Strongly disagree","Tend to agree","Strongly disagree","No influence at all","Some influence","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - have never seen it","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",65,"C1","C1","RETIRED","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","C £6,500 - £7,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.53031 +"706","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Don't know","Neither agree nor disagree","Strongly agree","Don't know","Tend to disagree","Don't know","Neither agree nor disagree","Tend to agree","Don't know","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",35,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.4317 +"707","Conservative",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",38,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE OTHER","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.37063 +"708","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",28,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.37413 +"709","Refused","Refused","9","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","60-64","55-64",63,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Refused","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.37297 +"710","Labour",NA,"10 (Absolutely certain to vote)","8","Contacted a local councillor or MP/MSP/WAM","Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved quite a lot","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","60-64","55-64",64,"AB","A","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","OTHER","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.32199 +"711","Labour",NA,"10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","45-54","45-54",53,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","OTHER","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.61568 +"712","Conservative",NA,"9","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","MALE","60-64","55-64",61,"C1","C1","RETIRED","WEST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.56272 +"713","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","No influence at all","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - but have seen it before then","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","FEMALE","65+","75+",82,"C1","C1","RETIRED","WEST MIDLANDS","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.12486 +"714","Labour",NA,"8","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",28,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","H £15,500 - £17,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.58494 +"715","UK Independence Party",NA,"7","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","65+","65-74",71,"C1","C1","RETIRED","SOUTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","UK Independence Party","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.52808 +"716","Labour",NA,"8","8","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","45-54","45-54",54,"AB","B","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","H £15,500 - £17,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.85126 +"717","Would not vote",NA,"5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Some influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",49,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","G £13,500 - £15,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.12604 +"718","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",75,"C1","C1","RETIRED","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","RETIRED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.67438 +"719","Would not vote",NA,"4","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Not very much influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",53,"DE","E","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","YORKS AND HUMBR","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","D £7,500 - £9,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.97661 +"720","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","Not very much","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","65+","75+",84,"AB","B","RETIRED","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.79356 +"721","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Works extremely well and could not be improved","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",21,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","D £7,500 - £9,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.05585 +"722","Would not vote",NA,"4","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","FEMALE","35-44","35-44",35,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","MIXED OTHER",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.78109 +"723","Would not vote",NA,"2","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Needs a great deal of improvement","Tend to disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Strongly agree","Tend to disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",66,"AB","B","RETIRED","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH",NA,"YES","RETIRED","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.82614 +"724","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Some influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",71,"C2","C2","RETIRED","SOUTH EAST","DON'T KNOW","WHITE","WHITE BRITISH","Conservative","NO","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.2736 +"725","Conservative",NA,"7","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","18-24","18-24",23,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.1674 +"726","Conservative",NA,"2","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 1 AND 2 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",22,"DE","D","NOT WORKING - HOUSEWIFE","SOUTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","YES","NOT WORKING - HOUSEWIFE","E £9,500 - £11,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.34614 +"727","Other",NA,"2","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Needs a great deal of improvement","Tend to disagree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Some influence","Not very much influence","Fairly involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",19,"C1","C1","FULL TIME STUDENT","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Other","YES","FULL TIME STUDENT","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.3895 +"728","Undecided","Undecided","10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",51,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.45324 +"729","Would not vote",NA,"2","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","A fair amount","Needs a great deal of improvement","Strongly disagree","Don't know","Neither agree nor disagree","Don't know","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",22,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","WALES","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.77353 +"730","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",45,"DE","E","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.46236 +"731","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","No influence at all","No influence at all","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","MALE","55-59","55-64",58,"AB","A","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.68479 +"732","Would not vote",NA,"2","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Some influence","Not very much influence","Fairly involved","Fairly involved","no Yes - where living now","no Yes - another address","no No","Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","MALE","18-24","18-24",21,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","WALES","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","D £7,500 - £9,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.47397 +"733","Undecided","Undecided","2","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 4 AND 5 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",44,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.30525 +"734","Conservative",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",21,"C1","C1","FULL TIME STUDENT","SOUTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","NO","FULL TIME STUDENT","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.54208 +"735","Undecided","Undecided","8","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","No influence at all","Not very much influence","Not at all involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","18-24","18-24",19,"C1","C1","FULL TIME STUDENT","SOUTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","NO","FULL TIME STUDENT","DON'T KNOW","BELONGS TO HOUSING ASSOCIATION","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.76872 +"736","UK Independence Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","65+","65-74",66,"AB","B","RETIRED","SOUTH EAST","OTHER","WHITE","WHITE BRITISH","UK Independence Party","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.01546 +"737","Undecided","Undecided","1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Tend to disagree","Not very much influence","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Strongly agree","Strongly agree","Don't know","Tend to disagree","Don't know","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",29,"C2","C2","NOT WORKING - HOUSEWIFE","SOUTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","B £4,500 - £6,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.54755 +"738","Undecided","UK Independence Party","5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",28,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE OTHER","UK Independence Party","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.18858 +"739","Undecided","Undecided","10 (Absolutely certain to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",44,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.57189 +"740","Undecided","Conservative","6","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Strongly agree","Tend to disagree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",53,"C2","C2","SELF-EMPLOYED","SOUTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","YES","SELF-EMPLOYED","K £30,000 - £39,999","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.60523 +"741","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Nothing at all","Nothing at all","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",60,"DE","D","UNEMPLOYED AND SEEKING WORK","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","UNEMPLOYED AND SEEKING WORK","G £13,500 - £15,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.57768 +"742","Undecided","Undecided","9","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","No influence at all","Not at all involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","35-44","35-44",41,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.46998 +"743","Undecided","Undecided","10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 3 AND 4 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",72,"AB","B","RETIRED","SOUTH WEST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.76381 +"744","Conservative",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","45-54","45-54",47,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.42681 +"745","Refused","Refused","3","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Nothing at all","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Tend to disagree","No influence at all","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","75+",0,"DE","E","RETIRED","SOUTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE IRISH","Refused","YES","RETIRED","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.94693 +"746","Conservative",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to disagree","Strongly disagree","Tend to agree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",38,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.90354 +"747","Undecided","Undecided","8","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","55-59","55-64",56,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.24739 +"748","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Strongly agree","Strongly disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Strongly disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","75+",80,"DE","D","RETIRED","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","RETIRED","F £11,500 - £13,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.925 +"749","UK Independence Party",NA,"7","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A great deal","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Some influence","Some influence","Very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",68,"C2","C2","RETIRED","SOUTH EAST","OTHER","WHITE","WHITE BRITISH","UK Independence Party","YES","RETIRED","F £11,500 - £13,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.85431 +"750","Conservative",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly disagree","Tend to disagree","Tend to disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",64,"C1","C1","RETIRED","SOUTH EAST","OTHER","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.76571 +"751","Undecided","Conservative","10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Some influence","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","45-54","45-54",47,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.56177 +"752","Undecided","Liberal Democrats (Lib Dem)","10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A great deal","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",29,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.16775 +"753","Undecided","Conservative","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",65,"AB","B","RETIRED","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.62067 +"754","Undecided","UK Independence Party","5","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","No influence at all","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly disagree","Tend to disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",65,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","YORKS AND HUMBR","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","UK Independence Party","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.00252 +"755","Undecided","UK Independence Party","10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Strongly disagree","Strongly disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","45-54","45-54",46,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","UK Independence Party","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","D £7,500 - £9,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.60309 +"756","Labour",NA,"5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Not very much influence","No influence at all","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","BETWEEN 4 AND 5 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",49,"C1","C1","UNEMPLOYED AND SEEKING WORK","YORKS AND HUMBR","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","UNEMPLOYED AND SEEKING WORK","A UP TO £4,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.88378 +"757","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - but have seen it before then","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Strongly disagree","Tend to agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","55-59","55-64",55,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.84566 +"758","Undecided","Undecided","7","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","25-34","25-34",25,"C2","C2","UNEMPLOYED AND SEEKING WORK","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ARAB","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.00536 +"759","Undecided","Conservative","10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A great deal","A fair amount","Could be improved in small ways but mainly works well","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Some influence","Some influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","No","Yes","Yes","No","Yes","Yes","Yes","MALE","35-44","35-44",35,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN INDIAN","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.56413 +"760","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Tend to disagree","Tend to disagree","Tend to disagree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","35-44","35-44",43,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN INDIAN","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.47955 +"761","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved in small ways but mainly works well","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","No influence at all","Not very much influence","Not at all involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","65+","65-74",69,"AB","B","HAVE PAID JOB - PART TIME (UNDER 8 HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - PART TIME (UNDER 8 HOURS PER WEEK)","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.38656 +"762","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Strongly disagree","Strongly disagree","Strongly disagree","Tend to disagree","Strongly agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Tend to disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",69,"DE","D","RETIRED","SCOTLAND","DON'T KNOW","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","RETIRED","E £9,500 - £11,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.41383 +"763","Undecided","Undecided","10 (Absolutely certain to vote)","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Don't know","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Don't know","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",54,"DE","E","NOT IN PAID WORK FOR OTHER REASON","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Undecided","YES","NOT IN PAID WORK FOR OTHER REASON","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.39304 +"764","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","6","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Tend to disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Strongly disagree","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",48,"DE","D","NOT WORKING - HOUSEWIFE","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.474 +"765","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","8","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Needs a great deal of improvement","Tend to agree","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Some influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Don't know","Don't know","Strongly disagree","Strongly disagree","Strongly disagree","Tend to agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",67,"C2","C2","RETIRED","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","RETIRED","G £13,500 - £15,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.48483 +"766","Undecided","Undecided","6","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Nothing at all","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","no Yes - where living now","no Yes - another address","no No","Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Don't know","Don't know","Don't know","Don't know","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 3 AND 6 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",19,"DE","D","HAVE PAID JOB - PART TIME (UNDER 8 HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - PART TIME (UNDER 8 HOURS PER WEEK)","B £4,500 - £6,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","2","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.51245 +"767","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 2 AND 3 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","75+",76,"C1","C1","RETIRED","EASTERN","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.39751 +"768","Labour",NA,"6","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","75+",84,"DE","D","RETIRED","WEST MIDLANDS","OTHER","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.72513 +"769","Would not vote",NA,"2","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",28,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.48503 +"770","Conservative",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Strongly disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",44,"AB","A","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.58019 +"771","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","Not very much","Don't know","Don't know","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Don't know","Don't know","Don't know","Don't know","no Yes - where living now","no Yes - another address","No","no Don't know","Don't know","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",48,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE OTHER",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.81865 +"772","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Don't know","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","25-34","25-34",25,"C1","C1","FULL TIME STUDENT","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Labour","YES","FULL TIME STUDENT","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.36861 +"773","Undecided","Undecided","8","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",20,"C1","C1","FULL TIME STUDENT","SOUTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","YES","FULL TIME STUDENT","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.65346 +"774","Green Party",NA,"2","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Don't know","Some influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",43,"DE","D","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","SOUTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Green Party","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","D £7,500 - £9,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.91682 +"775","Green Party",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","A great deal of influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",57,"AB","B","UNEMPLOYED AND SEEKING WORK","SOUTH WEST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE OTHER","Green Party","YES","UNEMPLOYED AND SEEKING WORK","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.13536 +"776","Labour",NA,"5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","Nothing at all","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 2 AND 3 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",60,"C1","C1","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","NORTH WEST","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.28165 +"777","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A great deal","A great deal","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","Yes","Yes","No","No","No","No","No","MALE","65+","65-74",67,"C2","C2","RETIRED","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","RETIRED","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.678 +"778","Conservative",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Strongly disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","45-54","45-54",50,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","REFUSED","3","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.15035 +"779","Undecided","Undecided","7","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",19,"AB","B","FULL TIME STUDENT","SCOTLAND","STILL STUDYING","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","D £7,500 - £9,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","SINGLE - NOT PARENT/GUARDIAN","5+","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.73194 +"780","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Tend to disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","No influence at all","No influence at all","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Strongly disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",19,"C1","C1","FULL TIME STUDENT","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH",NA,"NO","FULL TIME STUDENT","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.56374 +"781","Refused","Undecided","10 (Absolutely certain to vote)","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","Not very much","Could be improved quite a lot","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",61,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SOUTH WEST","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN INDIAN","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - NOT PARENT/GUARDIAN","5+","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.35747 +"782","Undecided","Labour","4","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",29,"AB","B","SELF-EMPLOYED","SOUTH WEST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE OTHER","Labour","YES","SELF-EMPLOYED","L £40,000 - £49,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.04345 +"783","Undecided","Labour","5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Not very much influence","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","35-44","35-44",42,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.02121 +"784","Other",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","25-34","25-34",28,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Other","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","J £25,000 - £29,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.50526 +"785","Undecided","Undecided","9","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",51,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","OTHER","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.51835 +"786","Labour",NA,"5","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to disagree","Neither agree nor disagree","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",32,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","MASTERS/PHD OR EQUIVALENT","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.96659 +"787","Undecided","Would not vote","2","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Not very much influence","Not very much influence","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 3 AND 4 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",48,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Would not vote","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.67419 +"788","Labour",NA,"8","5","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Neither agree nor disagree","Tend to agree","Don't know","Neither agree nor disagree","Don't know","Don't know","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",39,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.68647 +"789","Would not vote",NA,"3","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","Don't know","no Null","Not at all interested","Nothing at all","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","35-44","35-44",36,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.68647 +"790","Undecided","Undecided","7","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Don't know","Tend to disagree","Tend to disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to disagree","Strongly agree","Tend to agree","Don't know","Don't know","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","65+","75+",82,"C2","C2","RETIRED","WEST MIDLANDS","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Undecided","YES","RETIRED","B £4,500 - £6,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.41406 +"791","Conservative",NA,"9","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",43,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.63154 +"792","Undecided","Labour","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - have never seen it","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 6 AND 12 MONTHS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","75+",75,"C2","C2","RETIRED","WEST MIDLANDS","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","B £4,500 - £6,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.01081 +"793","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","75+",84,"AB","B","RETIRED","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.82116 +"794","Labour",NA,"7","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Strongly disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","MALE","65+","65-74",67,"AB","B","RETIRED","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.51452 +"795","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Some influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",31,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.01591 +"796","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",63,"C1","C1","RETIRED","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","D £7,500 - £9,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.38798 +"797","Undecided","Scottish/Welsh Nationalist","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",58,"C2","C2","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","WALES","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","NO","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.58408 +"798","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",61,"DE","D","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","WALES","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","DON'T KNOW","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.40297 +"799","Conservative",NA,"9","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly disagree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",37,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.03407 +"800","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Nothing at all","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",65,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.60007 +"801","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",66,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.89753 +"802","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Nothing at all","Needs a great deal of improvement","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 4 AND 5 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",74,"DE","E","RETIRED","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","NO","RETIRED","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.83128 +"803","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",55,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.00535 +"804","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Not very much","Could be improved quite a lot","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","45-54","45-54",48,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.01281 +"805","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Very involved","Very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Very strong","Yes - in full","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 6 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","MALE","35-44","35-44",39,"C2","C2","UNEMPLOYED AND SEEKING WORK","WALES","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ARAB","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.37565 +"806","Green Party",NA,"9","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 6 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",22,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Green Party","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.47541 +"807","Would not vote",NA,"Don't know","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Don't know","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","DON'T KNOW","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",0,"C1","C1","NOT WORKING - HOUSEWIFE","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","MIXED WHITE AND ASIAN",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","REFUSED",NA,"FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.35167 +"808","Undecided","Undecided","8","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","Don't know","no Null","Not very interested","Don't know","Not very much","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","LESS THAN 3 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",21,"C1","C1","FULL TIME STUDENT","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","YES","FULL TIME STUDENT","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.47921 +"809","Refused","Refused","8","8","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly disagree","Tend to disagree","Strongly disagree","Strongly agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","No","Yes","Yes","Yes","No","Yes","Yes","MALE","35-44","35-44",43,"AB","A","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Refused","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",2.68239 +"810","Labour",NA,"9","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Strongly disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","45-54","45-54",46,"AB","A","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",2.46972 +"811","Labour",NA,"9","4","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","Not very much","Works extremely well and could not be improved","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","DON'T KNOW","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",65,"C2","C2","RETIRED","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","YES","RETIRED","F £11,500 - £13,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.35751 +"812","Conservative",NA,"7","6","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",26,"C2","C2","NOT WORKING - HOUSEWIFE","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.5443 +"813","Other",NA,"10 (Absolutely certain to vote)","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Some influence","Some influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 3 AND 6 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",35,"AB","B","NOT IN PAID WORK FOR OTHER REASON","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Other","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.59273 +"814","Conservative",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Needs a great deal of improvement","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Some influence","Some influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",50,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.58864 +"815","Conservative",NA,"9","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A great deal","A great deal","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","45-54","45-54",52,"C2","C2","NOT WORKING - HOUSEWIFE","LONDON","NO FORMAL QUALIFICATIONS","WHITE","WHITE IRISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.09615 +"816","Undecided","Conservative","6","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 5 AND 6 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","75+",75,"C1","C1","RETIRED","NORTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.82071 +"817","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - but have seen it before then","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","45-54","45-54",52,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.92861 +"818","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",67,"AB","B","RETIRED","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","RETIRED","G £13,500 - £15,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.00973 +"819","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","No influence at all","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Tend to disagree","Tend to disagree","Tend to agree","Strongly disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to disagree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",46,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","N £75,000 - £99,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.45389 +"820","Refused","Refused","10 (Absolutely certain to vote)","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Works extremely well and could not be improved","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","Yes","Yes","Yes","FEMALE","65+","75+",80,"DE","D","RETIRED","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Refused","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.63637 +"821","Refused","Labour","7","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",47,"C2","C2","SELF-EMPLOYED","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","SELF-EMPLOYED","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.8414 +"822","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","A great deal","A fair amount","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 1 AND 2 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",41,"AB","A","RETIRED","NORTH WEST","OTHER","NON-WHITE","MIXED OTHER",NA,"NO","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.36459 +"823","Would not vote",NA,"1 (Absolutely certain not to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Nothing at all","Needs a great deal of improvement","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Some influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",89,"DE","D","RETIRED","NORTH WEST","NO FORMAL QUALIFICATIONS","NON-WHITE","BLACK CARIBBEAN",NA,"YES","RETIRED","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.34253 +"824","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",50,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.68089 +"825","Other",NA,"4","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","A fair amount","Works extremely well and could not be improved","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",37,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","BLACK OTHER","Other","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.34297 +"826","Would not vote",NA,"1 (Absolutely certain not to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Tend to disagree","Strongly disagree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Strongly disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","THE SUN","no DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","60-64","55-64",64,"DE","E","RETIRED","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","RETIRED","F £11,500 - £13,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.44401 +"827","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",70,"AB","B","RETIRED","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","G £13,500 - £15,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.30443 +"828","Scottish/Welsh Nationalist",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to disagree","Strongly disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",52,"AB","B","SELF-EMPLOYED","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","SELF-EMPLOYED","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.57884 +"829","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Nothing at all","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",56,"DE","E","UNEMPLOYED AND SEEKING WORK","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","UNEMPLOYED AND SEEKING WORK","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","2","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.37995 +"830","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",28,"DE","E","UNEMPLOYED AND SEEKING WORK","SCOTLAND","MASTERS/PHD OR EQUIVALENT","NON-WHITE","ASIAN INDIAN","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.2272 +"831","Undecided","Labour","9","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly disagree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","35-44","35-44",40,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EAST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",3.40548 +"832","Labour",NA,"10 (Absolutely certain to vote)","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Don't know","Tend to disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Don't know","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 4 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","25-34","25-34",32,"DE","E","NOT WORKING - HOUSEWIFE","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","NOT WORKING - HOUSEWIFE","H £15,500 - £17,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.07896 +"833","Undecided","Conservative","10 (Absolutely certain to vote)","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",51,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","K £30,000 - £39,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.13234 +"834","Undecided","UK Independence Party","Don't know","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Some influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Tend to agree","Tend to agree","Strongly disagree","Strongly agree","Strongly agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",73,"DE","D","RETIRED","SOUTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","UK Independence Party","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.64987 +"835","Labour",NA,"9","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","No influence at all","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","MALE","65+","75+",80,"AB","B","RETIRED","EAST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.95325 +"836","Conservative",NA,"5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 4 AND 5 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",74,"C2","C2","RETIRED","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","NO","RETIRED","F £11,500 - £13,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.57686 +"837","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","A fair amount","Nothing at all","Needs a great deal of improvement","Strongly agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Tend to disagree","No influence at all","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",57,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.02398 +"838","Undecided","Undecided","5","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Don't know","Strongly disagree","Don't know","Strongly disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to agree","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",54,"DE","E","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Undecided","NO","NOT IN PAID WORK FOR OTHER REASON","C £6,500 - £7,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.46236 +"839","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to disagree","Strongly disagree","Tend to disagree","Strongly agree","Tend to disagree","Not very much influence","No influence at all","Fairly involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","25-34","25-34",34,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","OTHER","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.94485 +"840","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to disagree","Strongly disagree","Tend to disagree","Strongly agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to disagree","Strongly disagree","Tend to disagree","Strongly disagree","Tend to disagree","Tend to disagree","Strongly disagree","Strongly disagree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 4 AND 5 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",72,"DE","D","RETIRED","WALES","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","RETIRED","E £9,500 - £11,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.44902 +"841","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Don't know","Don't know","Neither agree nor disagree","Don't know","No influence at all","No influence at all","Very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",37,"DE","E","NOT WORKING - HOUSEWIFE","WALES","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","NOT WORKING - HOUSEWIFE","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","4","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.75093 +"842","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Tend to disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Strongly agree","Strongly disagree","Tend to agree","Don't know","Tend to agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","55-59","55-64",58,"DE","E","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","WALES","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","B £4,500 - £6,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.40608 +"843","Undecided","Would not vote","1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","Yes - in full","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","18-24","18-24",21,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Would not vote","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.64272 +"844","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to disagree","Strongly disagree","Strongly disagree","Tend to agree","Strongly agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Strongly disagree","Strongly disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","MALE","65+","65-74",69,"C1","C1","RETIRED","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH",NA,"YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.57559 +"845","UK Independence Party",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Some influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Neither agree nor disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","65+","65-74",68,"C2","C2","RETIRED","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","UK Independence Party","YES","RETIRED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.70042 +"846","Conservative",NA,"10 (Absolutely certain to vote)","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Some influence","Some influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly disagree","Don't know","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","65+","65-74",73,"AB","A","RETIRED","EASTERN","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.73458 +"847","Undecided","Undecided","5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Don't know","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Don't know","Neither agree nor disagree","Neither agree nor disagree","Don't know","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","35-44","35-44",37,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","3","2","YES","AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.11786 +"848","Undecided","Undecided","5","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Tend to agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",45,"AB","B","NOT IN PAID WORK FOR OTHER REASON","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE OTHER","Undecided","YES","NOT IN PAID WORK FOR OTHER REASON","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.17601 +"849","Liberal Democrats (Lib Dem)",NA,"9","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved quite a lot","Strongly disagree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",67,"AB","B","RETIRED","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","RETIRED","K £30,000 - £39,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.72085 +"850","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",42,"AB","A","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","N £75,000 - £99,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.54985 +"851","Conservative",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Nothing at all","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",71,"C1","C1","RETIRED","SOUTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.04662 +"852","Labour",NA,"5","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","25-34","25-34",34,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE IRISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","SINGLE - PARENT/GUARDIAN","5+","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.60195 +"853","Labour",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",26,"DE","E","UNEMPLOYED AND SEEKING WORK","NORTH WEST","OTHER","NON-WHITE","MIXED WHITE/BLACK CARIBBEAN","Labour","YES","UNEMPLOYED AND SEEKING WORK","F £11,500 - £13,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","WID/DIV/SEP - PARENT/GUARDIAN","3","2","YES","AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.48932 +"854","Labour",NA,"10 (Absolutely certain to vote)","5","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",67,"C1","C1","RETIRED","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.59037 +"855","Labour",NA,"5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","No influence at all","No influence at all","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","no No","Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",18,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","NORTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.21615 +"856","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","A great deal of influence","A great deal of influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 4 AND 5 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",38,"C1","C1","NOT WORKING - HOUSEWIFE","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ARAB","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.48079 +"857","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",54,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.81133 +"858","Undecided","Labour","10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to disagree","Tend to disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 2 AND 3 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",64,"DE","E","UNEMPLOYED AND SEEKING WORK","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","BLACK CARIBBEAN","Labour","YES","UNEMPLOYED AND SEEKING WORK","G £13,500 - £15,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.48449 +"859","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Don't know","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Don't know","Don't know","Don't know","Don't know","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 4 AND 5 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",33,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE OTHER",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.74674 +"860","Undecided","Labour","3","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",29,"C2","C2","NOT WORKING - HOUSEWIFE","LONDON","GCSE/O-LEVEL/CSE","NON-WHITE","MIXED WHITE/BLACK CARIBBEAN","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","C £6,500 - £7,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.41679 +"861","Conservative",NA,"10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","MALE","45-54","45-54",45,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.5985 +"862","Undecided","Undecided","4","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",21,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","REFUSED",NA,"SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.33974 +"863","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","No influence at all","Some influence","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",84,"DE","E","RETIRED","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","G £13,500 - £15,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.95898 +"864","UK Independence Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved in small ways but mainly works well","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",43,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","UK Independence Party","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.52057 +"865","Conservative",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Some influence","Some influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",43,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.5175 +"866","Labour",NA,"10 (Absolutely certain to vote)","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Tend to agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",61,"AB","B","RETIRED","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","B £4,500 - £6,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.07511 +"867","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","No","Yes","No","No","No","No","No","FEMALE","65+","65-74",72,"AB","B","NOT WORKING - HOUSEWIFE","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.92528 +"868","Would not vote",NA,"2","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Don't know","Don't know","Don't know","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Don't know","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",37,"AB","B","HAVE PAID JOB - PART TIME (UNDER 8 HOURS PER WEEK)","EASTERN","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.09145 +"869","Labour",NA,"8","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Don't know","Tend to disagree","Don't know","Don't know","Don't know","Don't know","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Don't know","Don't know","Don't know","Don't know","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Don't know","Don't know","Don't know","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 1 AND 2 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",41,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN BANGLADESHI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.60531 +"870","Labour",NA,"8","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Don't know","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Tend to agree","Tend to agree","Don't know","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 5 AND 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","35-44","35-44",39,"C2","C2","NOT WORKING - HOUSEWIFE","LONDON","NO FORMAL QUALIFICATIONS","WHITE","WHITE OTHER","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.07303 +"871","Labour",NA,"7","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to disagree","Don't know","Tend to agree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Don't know","Don't know","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Don't know","Tend to disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","LESS THAN AROUND ONCE A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",41,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","NON-WHITE","BLACK AFRICAN","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","REFUSED","REFUSED",NA,"FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.58505 +"872","Undecided","Green Party","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",64,"AB","A","RETIRED","SOUTH WEST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Green Party","NO","RETIRED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.39897 +"873","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Don't know","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Some influence","No influence at all","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","35-44","35-44",44,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.38357 +"874","Would not vote",NA,"1 (Absolutely certain not to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",68,"AB","B","RETIRED","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH",NA,"YES","RETIRED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.90319 +"875","Labour",NA,"10 (Absolutely certain to vote)","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Needs a great deal of improvement","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","75+",84,"C2","C2","RETIRED","SOUTH WEST","OTHER","WHITE","WHITE BRITISH","Labour","YES","RETIRED","C £6,500 - £7,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.65996 +"876","Labour",NA,"7","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","No influence at all","Not very much influence","Fairly involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","LESS THAN 3 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","25-34","25-34",30,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","MASTERS/PHD OR EQUIVALENT","NON-WHITE","BLACK AFRICAN","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.99041 +"877","Labour",NA,"6","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","LESS THAN 3 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","No","Yes","Yes","No","Yes","Yes","Yes","FEMALE","35-44","35-44",35,"AB","B","FULL TIME STUDENT","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","BLACK AFRICAN","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.56576 +"878","Undecided","UK Independence Party","7","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Strongly disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly disagree","Strongly disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",45,"DE","E","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","SOUTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","UK Independence Party","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.13754 +"879","Undecided","Liberal Democrats (Lib Dem)","9","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Strongly disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly agree","Strongly agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",61,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.50008 +"880","Conservative",NA,"8","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","55-59","55-64",56,"DE","D","NOT WORKING - HOUSEWIFE","SOUTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","NO","RETIRED","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.99853 +"881","Undecided","Labour","10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","25-34","25-34",30,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.01481 +"882","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","5","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",67,"DE","E","RETIRED","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","RETIRED","F £11,500 - £13,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.33127 +"883","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly disagree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",75,"C1","C1","RETIRED","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.35007 +"884","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Some influence","Some influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","60-64","55-64",63,"C2","C2","RETIRED","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.30152 +"885","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","75+",77,"C1","C1","RETIRED","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","NO","RETIRED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.70812 +"886","Undecided","Refused","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Some influence","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Tend to agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",52,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Refused","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","SINGLE - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.57863 +"887","Undecided","Undecided","2","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Don't know","Don't know","Neither agree nor disagree","Some influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Strongly disagree","Strongly disagree","Strongly agree","Tend to agree","Don't know","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Don't know","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",69,"C1","C1","RETIRED","EAST MIDLANDS","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Undecided","NO","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.88919 +"888","Undecided","Undecided","8","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Some influence","No influence at all","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly disagree","Tend to disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",67,"C1","C1","RETIRED","EAST MIDLANDS","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Undecided","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.32212 +"889","Conservative",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","A fair amount","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",39,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","OTHER","WHITE","WHITE IRISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","REFUSED","2","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.30852 +"890","Labour",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",35,"DE","D","UNEMPLOYED AND SEEKING WORK","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","UNEMPLOYED AND SEEKING WORK","G £13,500 - £15,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.8433 +"891","Refused","Refused","9","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","65+","65-74",65,"AB","B","SELF-EMPLOYED","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Refused","YES","SELF-EMPLOYED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.76291 +"892","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A great deal","Could be improved in small ways but mainly works well","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","No influence at all","Some influence","Not at all involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","65+","75+",78,"AB","B","RETIRED","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.6445 +"893","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to agree","Strongly disagree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","No","Yes","No","No","No","No","No","MALE","65+","75+",76,"AB","B","RETIRED","EASTERN","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.99928 +"894","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","7","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"DON'T KNOW","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",64,"C2","C2","RETIRED","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.25226 +"895","UK Independence Party",NA,"8","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly disagree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","No influence at all","Not very much influence","Not at all involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 2 AND 3 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","65+","65-74",69,"C1","C1","RETIRED","EASTERN","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","UK Independence Party","YES","RETIRED","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.71932 +"896","UK Independence Party",NA,"5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 1 AND 2 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","55-59","55-64",56,"DE","E","NOT IN PAID WORK FOR OTHER REASON","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","UK Independence Party","YES","NOT IN PAID WORK FOR OTHER REASON","D £7,500 - £9,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.65706 +"897","Labour",NA,"10 (Absolutely certain to vote)","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A fair amount","Could be improved quite a lot","Strongly disagree","Strongly disagree","Strongly disagree","Tend to disagree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly disagree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","MALE","55-59","55-64",56,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.19279 +"898","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","35-44","35-44",36,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","EASTERN","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.12867 +"899","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",26,"DE","E","NOT IN PAID WORK FOR OTHER REASON","EASTERN","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"YES","NOT IN PAID WORK FOR OTHER REASON","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.98873 +"900","Labour",NA,"7","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",50,"DE","E","UNEMPLOYED AND SEEKING WORK","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","YES","UNEMPLOYED AND SEEKING WORK","A UP TO £4,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.50521 +"901","Labour",NA,"5","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 4 AND 5 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",26,"C1","C1","SELF-EMPLOYED","WEST MIDLANDS","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN PAKISTANI","Labour","YES","SELF-EMPLOYED","G £13,500 - £15,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.38869 +"902","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",57,"DE","E","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","WEST MIDLANDS","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","REFUSED","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.58897 +"903","Labour",NA,"8","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 1 AND 2 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",32,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","OTHER","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","E £9,500 - £11,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","4","YES","AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.84541 +"904","Refused","Refused","10 (Absolutely certain to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Some influence","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","no No","Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","Yes","Yes","No","No","No","No","No","MALE","60-64","55-64",63,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Refused","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.25033 +"905","UK Independence Party",NA,"6","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Tend to disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Not very much influence","No influence at all","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to agree","Strongly disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",36,"C2","C2","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","SOUTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","UK Independence Party","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","B £4,500 - £6,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.88829 +"906","Conservative",NA,"6","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","Not very much","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",39,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.63154 +"907","Labour",NA,"8","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 4 AND 5 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",34,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","F £11,500 - £13,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","4","YES","AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.49897 +"908","Undecided","Undecided","6","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Don't know","Don't know","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","NO","BETWEEN 6 AND 12 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",27,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","WEST MIDLANDS","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE OTHER","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","H £15,500 - £17,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.95976 +"909","Conservative",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","A fair amount","Not very much","Could be improved quite a lot","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","75+",75,"AB","B","RETIRED","SOUTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.08211 +"910","Conservative",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",81,"C2","C2","RETIRED","EASTERN","OTHER","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.8407 +"911","Undecided","Labour","5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","FEMALE","60-64","55-64",62,"AB","B","RETIRED","EASTERN","OTHER","WHITE","WHITE BRITISH","Labour","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.21096 +"912","Labour",NA,"10 (Absolutely certain to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",33,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.42099 +"913","Undecided","Undecided","7","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","FEMALE","35-44","35-44",42,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.31504 +"914","Undecided","Labour","5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Tend to agree","Don't know","Tend to agree","Tend to agree","Some influence","Some influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Don't know","Don't know","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 1 AND 2 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",49,"C1","C1","UNEMPLOYED AND SEEKING WORK","NORTH WEST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.86112 +"915","Labour",NA,"8","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Some influence","Some influence","Not very involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly disagree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",22,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.53574 +"916","Undecided","Undecided","7","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Some influence","No influence at all","Very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",66,"DE","D","RETIRED","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.82356 +"917","Would not vote",NA,"3","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",63,"C1","C1","RETIRED","SOUTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","RETIRED","H £15,500 - £17,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.81723 +"918","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Nothing at all","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Not very much influence","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","75+",75,"C1","C1","RETIRED","SOUTH WEST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.36413 +"919","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","65+","65-74",74,"C1","C1","RETIRED","SOUTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"NO","RETIRED","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.74298 +"920","Labour",NA,"9","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 4 AND 5 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","35-44","35-44",42,"C2","C2","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","SOUTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.99748 +"921","UK Independence Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Nothing at all","Not very much","Could be improved in small ways but mainly works well","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Tend to agree","No influence at all","Some influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 5 AND 6 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","25-34","25-34",32,"AB","B","NOT WORKING - HOUSEWIFE","SOUTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","UK Independence Party","NO","NOT WORKING - HOUSEWIFE","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.29006 +"922","Labour",NA,"5","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","65+","75+",80,"AB","B","RETIRED","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","D £7,500 - £9,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.52551 +"923","Undecided","Labour","4","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",63,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.45392 +"924","Labour",NA,"8","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Works extremely well and could not be improved","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",56,"DE","E","UNEMPLOYED AND SEEKING WORK","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","UNEMPLOYED AND SEEKING WORK","C £6,500 - £7,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.81829 +"925","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Not very much influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",42,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE OTHER",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.68868 +"926","Undecided","Undecided","3","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","Not very much","A fair amount","Works extremely well and could not be improved","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Some influence","Some influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - but have seen it before then","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","MALE","18-24","18-24",20,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN PAKISTANI","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.49897 +"927","UK Independence Party",NA,"2","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Tend to agree","Neither agree nor disagree","Strongly disagree","Strongly agree","Not very much influence","No influence at all","Not at all involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Tend to agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Don't know","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Strongly disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","25-34","25-34",25,"C1","C1","FULL TIME STUDENT","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","UK Independence Party","YES","FULL TIME STUDENT","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.39128 +"928","Labour",NA,"8","4","no Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Some influence","Not very much influence","Fairly involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","18-24","18-24",20,"C1","C1","FULL TIME STUDENT","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","FULL TIME STUDENT","G £13,500 - £15,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.24876 +"929","Liberal Democrats (Lib Dem)",NA,"7","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","45-54","45-54",52,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.3323 +"930","UK Independence Party",NA,"10 (Absolutely certain to vote)","8","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Some influence","Some influence","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","45-54","45-54",49,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","UK Independence Party","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.10445 +"931","Undecided","Liberal Democrats (Lib Dem)","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Needs a great deal of improvement","Strongly disagree","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Not very much influence","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Strongly disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","65+","65-74",65,"C1","C1","RETIRED","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.51486 +"932","Undecided","Undecided","2","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly disagree","Not very much influence","No influence at all","Fairly involved","Very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly disagree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 4 AND 5 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","45-54","45-54",49,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","WALES","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.63015 +"933","Undecided","Labour","10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved in small ways but mainly works well","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","55-59","55-64",59,"AB","B","RETIRED","WALES","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.56117 +"934","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",34,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","H £15,500 - £17,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","3","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.78515 +"935","Labour",NA,"8","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A great deal","A great deal","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","No","No","No","No","No","No","MALE","45-54","45-54",54,"C1","C1","SELF-EMPLOYED","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","SELF-EMPLOYED","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.86189 +"936","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",62,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","H £15,500 - £17,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.52076 +"937","Conservative",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","65+","65-74",73,"C1","C1","SELF-EMPLOYED","NORTH WEST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Conservative","YES","SELF-EMPLOYED","H £15,500 - £17,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.05472 +"938","UK Independence Party",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Needs a great deal of improvement","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",66,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","NO FORMAL QUALIFICATIONS","WHITE","WHITE IRISH","UK Independence Party","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","OTHER",NA,"POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.31599 +"939","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Some influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","18-24","18-24",21,"DE","D","FULL TIME STUDENT","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","BLACK AFRICAN","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.46447 +"940","Refused","Labour","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","A fair amount","A fair amount","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Not very much influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","25-34","25-34",29,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN INDIAN","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","2","YES","AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.47414 +"941","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Works extremely well and could not be improved","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"DON'T KNOW","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",57,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN INDIAN","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.50367 +"942","Conservative",NA,"8","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","25-34","25-34",29,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE OTHER","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.81596 +"943","Labour",NA,"5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Don't know","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",18,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN INDIAN","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.52237 +"944","Undecided","Undecided","Don't know","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Don't know","Don't know","Neither agree nor disagree","Don't know","Don't know","Don't know","Neither agree nor disagree","Don't know","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","18-24","18-24",19,"C2","C2","FULL TIME STUDENT","LONDON","GCSE/O-LEVEL/CSE","NON-WHITE","BLACK AFRICAN","Undecided","NO","SELF-EMPLOYED","G £13,500 - £15,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.30967 +"945","Undecided","Labour","10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","45-54","45-54",54,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","NO FORMAL QUALIFICATIONS","WHITE","WHITE IRISH","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","F £11,500 - £13,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","WID/DIV/SEP - PARENT/GUARDIAN","2","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.0345 +"946","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Not very much influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",69,"C1","C1","RETIRED","NORTH WEST","OTHER","WHITE","WHITE BRITISH","Labour","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.85808 +"947","Undecided","Conservative","10 (Absolutely certain to vote)","5","Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Works extremely well and could not be improved","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","A great deal of influence","A great deal of influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","Yes","Yes","Yes","Yes","No","Yes","Yes","FEMALE","45-54","45-54",54,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","OTHER","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.86393 +"948","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","45-54","45-54",50,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.46641 +"949","Undecided","Undecided","10 (Absolutely certain to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","55-59","55-64",57,"AB","A","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.33177 +"950","Undecided","Undecided","3","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","25-34","25-34",28,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.85231 +"951","Labour",NA,"6","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","Don't know","no Null","Not very interested","Not very much","A fair amount","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Some influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Don't know","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","25-34","25-34",26,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","G £13,500 - £15,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.50526 +"952","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","MALE","65+","65-74",68,"AB","B","RETIRED","SCOTLAND","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.38656 +"953","Labour",NA,"10 (Absolutely certain to vote)","7","no Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A great deal","A great deal","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",44,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.84514 +"954","Refused","Refused","Don't know","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Don't know","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",29,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Refused","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.50526 +"955","Undecided","Conservative","10 (Absolutely certain to vote)","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",55,"AB","B","RETIRED","SCOTLAND","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","N £75,000 - £99,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.61359 +"956","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A great deal","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",47,"AB","A","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","N £75,000 - £99,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.15562 +"957","Labour",NA,"8","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",45,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.79311 +"958","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Tend to disagree","Strongly agree","Don't know","Don't know","Don't know","Strongly agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",66,"C1","C1","RETIRED","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.39843 +"959","Conservative",NA,"10 (Absolutely certain to vote)","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",53,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.83692 +"960","Would not vote",NA,"5","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","No influence at all","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","25-34","25-34",25,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.85231 +"961","Undecided","Undecided","8","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Don't know","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","60-64","55-64",63,"C2","C2","RETIRED","EASTERN","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","NO","RETIRED","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.21218 +"962","Labour",NA,"8","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",28,"DE","E","UNEMPLOYED AND SEEKING WORK","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","UNEMPLOYED AND SEEKING WORK","B £4,500 - £6,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","2","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.51941 +"963","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 1 AND 2 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",76,"DE","E","RETIRED","SCOTLAND","DON'T KNOW","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.44527 +"964","Undecided","Undecided","5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",23,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.51245 +"965","Scottish/Welsh Nationalist",NA,"1 (Absolutely certain not to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Not very much influence","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - have never seen it","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",63,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.49171 +"966","Would not vote",NA,"Don't know","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","75+",76,"C1","C1","RETIRED","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH",NA,"YES","RETIRED","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.58268 +"967","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",29,"DE","E","NOT IN PAID WORK FOR OTHER REASON","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"YES","NOT IN PAID WORK FOR OTHER REASON","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","2","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.42587 +"968","Would not vote",NA,"1 (Absolutely certain not to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A great deal","A fair amount","Needs a great deal of improvement","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Tend to disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly disagree","Tend to disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","45-54","45-54",48,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.80419 +"969","Undecided","Liberal Democrats (Lib Dem)","10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Not very much","Could be improved in small ways but mainly works well","Strongly disagree","Strongly disagree","Tend to disagree","Strongly agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",53,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.70804 +"970","Undecided","Undecided","8","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","FEMALE","45-54","45-54",45,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","WID/DIV/SEP - PARENT/GUARDIAN","2","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.91614 +"971","Would not vote",NA,"5","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","65+","65-74",65,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EAST MIDLANDS","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","D £7,500 - £9,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.66807 +"972","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","NO","BETWEEN 3 AND 6 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",54,"DE","E","NOT IN PAID WORK FOR OTHER REASON","EAST MIDLANDS","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","NO","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","D £7,500 - £9,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.86365 +"973","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to disagree","Strongly disagree","Tend to disagree","Tend to disagree","Tend to agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 1 AND 2 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",27,"DE","E","UNEMPLOYED AND SEEKING WORK","WALES","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","UNEMPLOYED AND SEEKING WORK","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.97051 +"974","Undecided","Conservative","10 (Absolutely certain to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","Not very much","Needs a great deal of improvement","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 4 AND 5 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",59,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.06324 +"975","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Strongly agree","Strongly disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","75+",79,"DE","D","RETIRED","WALES","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","RETIRED","E £9,500 - £11,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.58814 +"976","Undecided","Undecided","8","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","35-44","35-44",42,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","F £11,500 - £13,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.8869 +"977","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A great deal","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Some influence","Some influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly disagree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",70,"C1","C1","RETIRED","SOUTH EAST","OTHER","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","G £13,500 - £15,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.5968 +"978","Labour",NA,"4","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Not very much influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",35,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","G £13,500 - £15,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.20576 +"979","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Could be improved quite a lot","Strongly disagree","Tend to disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",36,"DE","E","NOT WORKING - HOUSEWIFE","WALES","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","NOT WORKING - HOUSEWIFE","H £15,500 - £17,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","WID/DIV/SEP - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.63833 +"980","Would not vote",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","65+","75+",81,"DE","E","RETIRED","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH",NA,"YES","RETIRED","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.98649 +"981","Conservative",NA,"10 (Absolutely certain to vote)","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","45-54","45-54",54,"AB","A","SELF-EMPLOYED","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","SELF-EMPLOYED","O MORE THAN £100,000","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.39183 +"982","Undecided","Undecided","10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","THE SUN","no DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","25-34","25-34",34,"C1","C1","UNEMPLOYED AND SEEKING WORK","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.62565 +"983","Labour",NA,"10 (Absolutely certain to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Works extremely well and could not be improved","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","65+","65-74",66,"C1","C1","RETIRED","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.21992 +"984","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","75+",78,"C2","C2","RETIRED","LONDON","NO FORMAL QUALIFICATIONS","NON-WHITE","BLACK CARIBBEAN","Labour","YES","RETIRED","REFUSED","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.35859 +"985","Labour",NA,"2","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Nothing at all","Needs a great deal of improvement","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 2 AND 3 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","45-54","45-54",48,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","NON-WHITE","BLACK CARIBBEAN","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","REFUSED","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.38466 +"986","Undecided","Labour","5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Nothing at all","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Not very much influence","Some influence","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","FEMALE","18-24","18-24",19,"C2","C2","FULL TIME STUDENT","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","BLACK AFRICAN","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OTHER",NA,"FAMILY","SINGLE - NOT PARENT/GUARDIAN","5+","4","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.62995 +"987","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Not very much influence","No influence at all","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","18-24","18-24",20,"DE","D","FULL TIME STUDENT","LONDON","MASTERS/PHD OR EQUIVALENT","NON-WHITE","BLACK AFRICAN","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","SINGLE - NOT PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.37787 +"988","Labour",NA,"8","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",27,"AB","A","NOT WORKING - HOUSEWIFE","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.14707 +"989","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","MALE","65+","65-74",65,"C1","C1","RETIRED","EASTERN","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.64833 +"990","Undecided","Liberal Democrats (Lib Dem)","10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",60,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.45319 +"991","Labour",NA,"5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to agree","Strongly disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Not very much influence","No influence at all","Not very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",21,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","H £15,500 - £17,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.56816 +"992","British National Party (BNP)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 5 AND 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","55-59","55-64",56,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","British National Party (BNP)","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.63863 +"993","Undecided","Liberal Democrats (Lib Dem)","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","No influence at all","No influence at all","Very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 6 MONTHS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",56,"DE","D","SELF-EMPLOYED","EASTERN","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","SELF-EMPLOYED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.29896 +"994","Undecided","Undecided","1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","Don't know","no Null","Not at all interested","Not very much","Not very much","Don't know","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 2 AND 3 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",20,"DE","D","NOT WORKING - HOUSEWIFE","SOUTH WEST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","H £15,500 - £17,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.16131 +"995","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","Not very much","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",20,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.81152 +"996","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",47,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.47343 +"997","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 2 AND 3 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",23,"DE","E","NOT IN PAID WORK FOR OTHER REASON","NORTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","NOT IN PAID WORK FOR OTHER REASON","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","4","3","YES","AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.32775 +"998","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Tend to disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","60-64","55-64",62,"DE","E","RETIRED","NORTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.78444 +"999","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","No influence at all","Fairly involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","25-34","25-34",25,"DE","D","UNEMPLOYED AND SEEKING WORK","NORTH EAST","OTHER","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.86046 +"1000","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","Don't know","no Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Tend to disagree","Tend to disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 3 AND 4 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",71,"C2","C2","RETIRED","NORTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.8362 +"1001","Undecided","Undecided","1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","45-54","45-54",47,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.05928 +"1002","Refused","Refused","5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",41,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Refused","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.33094 +"1003","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 2 AND 3 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","FEMALE","25-34","25-34",29,"DE","E","NOT IN PAID WORK FOR OTHER REASON","NORTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"YES","NOT IN PAID WORK FOR OTHER REASON","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","4","3","YES","AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.095 +"1004","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Nothing at all","Nothing at all","Could be improved quite a lot","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",51,"DE","D","NOT WORKING - HOUSEWIFE","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.1512 +"1005","Labour",NA,"10 (Absolutely certain to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Nothing at all","Could be improved quite a lot","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",62,"DE","D","RETIRED","NORTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.29015 +"1006","Undecided","Undecided","10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Some influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","Yes","Yes","Yes","FEMALE","55-59","55-64",59,"AB","B","NOT WORKING - HOUSEWIFE","SOUTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.65324 +"1007","Labour",NA,"10 (Absolutely certain to vote)","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",47,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","BLACK CARIBBEAN","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.73837 +"1008","Labour",NA,"10 (Absolutely certain to vote)","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly agree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","75+",76,"C1","C1","RETIRED","WALES","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","RETIRED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.94252 +"1009","Green Party",NA,"8","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","Not very much","Could be improved in small ways but mainly works well","Strongly disagree","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","65+","65-74",71,"C2","C2","RETIRED","SOUTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE IRISH","Green Party","YES","RETIRED","H £15,500 - £17,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.2736 +"1010","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Strongly disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Strongly disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","FEMALE","45-54","45-54",52,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","F £11,500 - £13,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.77016 +"1011","Conservative",NA,"3","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A great deal","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","No influence at all","No influence at all","Not very involved","Not very involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",21,"C1","C1","FULL TIME STUDENT","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","FULL TIME STUDENT","K £30,000 - £39,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.63024 +"1012","UK Independence Party",NA,"10 (Absolutely certain to vote)","9","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","65+","65-74",73,"AB","A","RETIRED","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","UK Independence Party","YES","RETIRED","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.88135 +"1013","Conservative",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","35-44","35-44",40,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.53491 +"1014","Liberal Democrats (Lib Dem)",NA,"5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Nothing at all","Could be improved quite a lot","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",37,"AB","B","SELF-EMPLOYED","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.30953 +"1015","Undecided","Conservative","10 (Absolutely certain to vote)","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","65+","75+",82,"C1","C1","RETIRED","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.1596 +"1016","Undecided","Conservative","10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","A fair amount","Needs a great deal of improvement","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to disagree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","35-44","35-44",39,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.78056 +"1017","Conservative",NA,"10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","A fair amount","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","55-59","55-64",57,"AB","B","SELF-EMPLOYED","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","SELF-EMPLOYED","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.8228 +"1018","Labour",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly disagree","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",65,"C1","C1","RETIRED","WEST MIDLANDS","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.52919 +"1019","Undecided","Conservative","5","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","45-54","45-54",52,"C1","C1","NOT IN PAID WORK FOR OTHER REASON","WEST MIDLANDS","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.89107 +"1020","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Works extremely well and could not be improved","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","65+","65-74",72,"AB","A","RETIRED","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.90291 +"1021","Conservative",NA,"9","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",45,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","WID/DIV/SEP - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.93434 +"1022","Undecided","Labour","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",51,"C2","C2","NOT WORKING - HOUSEWIFE","YORKS AND HUMBR","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.11966 +"1023","Undecided","Undecided","2","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","no No","Don't know","I am not a supporter of any political party","No - have never seen it","Tend to disagree","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Don't know","Don't know","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","18-24","18-24",18,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","SINGLE - NOT PARENT/GUARDIAN","4","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.50811 +"1024","Labour",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Tend to agree","Don't know","Tend to agree","Don't know","Tend to agree","Not very much influence","No influence at all","Very involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Don't know","Don't know","Don't know","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 6 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",21,"DE","E","NOT WORKING - HOUSEWIFE","WEST MIDLANDS","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","NOT WORKING - HOUSEWIFE","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","3","2","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.99689 +"1025","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Not very much","Needs a great deal of improvement","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Not very much influence","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",71,"C2","C2","RETIRED","EAST MIDLANDS","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.29888 +"1026","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",69,"C1","C1","RETIRED","EAST MIDLANDS","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Undecided","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.88919 +"1027","Labour",NA,"Don't know","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","FEMALE","25-34","25-34",30,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","NORTH WEST","MASTERS/PHD OR EQUIVALENT","NON-WHITE","ASIAN INDIAN","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.37104 +"1028","Would not vote",NA,"1 (Absolutely certain not to vote)","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Fairly strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","25-34","25-34",31,"C1","C1","UNEMPLOYED AND SEEKING WORK","NORTH WEST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE OTHER",NA,"YES","UNEMPLOYED AND SEEKING WORK","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.04948 +"1029","Conservative",NA,"10 (Absolutely certain to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",44,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","EASTERN","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.14008 +"1030","Undecided","Conservative","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",32,"C1","C1","FULL TIME STUDENT","NORTH WEST","STILL STUDYING","NON-WHITE","ASIAN PAKISTANI","Conservative","NO","REFUSED","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.36861 +"1031","Labour",NA,"10 (Absolutely certain to vote)","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",68,"DE","E","RETIRED","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE IRISH","Labour","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.9278 +"1032","Green Party",NA,"6","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","BETWEEN 2 AND 3 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","25-34","25-34",25,"DE","E","NOT IN PAID WORK FOR OTHER REASON","NORTH WEST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Green Party","YES","NOT IN PAID WORK FOR OTHER REASON","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","2","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.91719 +"1033","Refused","Refused","10 (Absolutely certain to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",38,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Refused","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.4317 +"1034","Labour",NA,"6","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A great deal","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","65+","65-74",66,"AB","B","RETIRED","YORKS AND HUMBR","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.77059 +"1035","Undecided","Conservative","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",72,"AB","B","RETIRED","YORKS AND HUMBR","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","E £9,500 - £11,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.9346 +"1036","Undecided","Conservative","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",67,"C2","C2","RETIRED","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.6483 +"1037","Conservative",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly disagree","Tend to agree","Strongly disagree","Strongly agree","Neither agree nor disagree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","65+","75+",83,"AB","B","RETIRED","YORKS AND HUMBR","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.00934 +"1038","UK Independence Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved in small ways but mainly works well","Strongly agree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to disagree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",19,"C1","C1","FULL TIME STUDENT","SOUTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","UK Independence Party","NO","FULL TIME STUDENT","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.65346 +"1039","Undecided","Undecided","1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",30,"C2","C2","NOT WORKING - HOUSEWIFE","SOUTH EAST","OTHER","NON-WHITE","ASIAN CHINESE","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.58354 +"1040","UK Independence Party",NA,"8","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Strongly disagree","Strongly disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",32,"DE","E","NOT WORKING - HOUSEWIFE","SOUTH EAST","OTHER","WHITE","WHITE BRITISH","UK Independence Party","YES","NOT WORKING - HOUSEWIFE","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","4","3","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.31604 +"1041","UK Independence Party",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Tend to disagree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","75+",82,"C1","C1","RETIRED","SOUTH EAST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","UK Independence Party","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.78171 +"1042","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Nothing at all","Nothing at all","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",28,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE OTHER",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.10989 +"1043","UK Independence Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Needs a great deal of improvement","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Not very much influence","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 6 AND 12 MONTHS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",74,"C1","C1","RETIRED","WEST MIDLANDS","OTHER","WHITE","WHITE BRITISH","UK Independence Party","YES","RETIRED","H £15,500 - £17,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.63418 +"1044","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",55,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.59391 +"1045","Scottish/Welsh Nationalist",NA,"8","4","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 4 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","60-64","55-64",60,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","OTHER",NA,"POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.75434 +"1046","Undecided","Undecided","10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","FEMALE","45-54","45-54",54,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","OTHER","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.37302 +"1047","Labour",NA,"5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","A fair amount","Needs a great deal of improvement","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","No influence at all","Not very much influence","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",19,"AB","B","FULL TIME STUDENT","WEST MIDLANDS","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN PAKISTANI","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.30039 +"1048","Undecided","Undecided","5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","Don't know","no Null","Not very interested","Nothing at all","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","A great deal of influence","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",40,"DE","D","UNEMPLOYED AND SEEKING WORK","WEST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN INDIAN","Undecided","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","REFUSED","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.59567 +"1049","Labour",NA,"10 (Absolutely certain to vote)","5","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Needs a great deal of improvement","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","No influence at all","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","MALE","45-54","45-54",49,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN INDIAN","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","N £75,000 - £99,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.75795 +"1050","Labour",NA,"5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Nothing at all","Not very much","Needs a great deal of improvement","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Not very much influence","Some influence","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",19,"AB","B","FULL TIME STUDENT","WEST MIDLANDS","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","ASIAN PAKISTANI","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","SINGLE - NOT PARENT/GUARDIAN","5+","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.49025 +"1051","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",80,"AB","B","RETIRED","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","YES","RETIRED","N £75,000 - £99,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.1796 +"1052","Labour",NA,"5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Not very much influence","A great deal of influence","Not very involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",29,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.82424 +"1053","Undecided","Liberal Democrats (Lib Dem)","10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","A fair amount","Could be improved in small ways but mainly works well","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","A great deal of influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",31,"AB","B","UNEMPLOYED AND SEEKING WORK","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.50081 +"1054","Labour",NA,"5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Strongly disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",38,"AB","B","NOT WORKING - HOUSEWIFE","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.45531 +"1055","Labour",NA,"6","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","A fair amount","Not very much","Works extremely well and could not be improved","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","No influence at all","Some influence","Not very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"DON'T KNOW","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",77,"DE","D","RETIRED","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.37313 +"1056","Labour",NA,"7","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Nothing at all","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Not very much influence","Some influence","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 4 AND 5 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",80,"DE","D","RETIRED","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","REFUSED","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.49611 +"1057","Labour",NA,"6","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Works extremely well and could not be improved","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Not very much influence","Some influence","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",65,"C2","C2","RETIRED","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.27462 +"1058","Undecided","Undecided","8","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Tend to disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","No influence at all","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",34,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EAST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","NO","SELF-EMPLOYED","L £40,000 - £49,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",4.19221 +"1059","Labour",NA,"9","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Works extremely well and could not be improved","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 4 AND 5 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",62,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","D £7,500 - £9,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.46691 +"1060","Would not vote",NA,"3","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Works extremely well and could not be improved","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",56,"C2","C2","NOT WORKING - HOUSEWIFE","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","F £11,500 - £13,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.46168 +"1061","Undecided","Undecided","7","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",21,"AB","B","FULL TIME STUDENT","EAST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OTHER",NA,"SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",3.75422 +"1062","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","65+","75+",77,"AB","A","RETIRED","NORTH WEST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.12393 +"1063","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",60,"DE","E","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","REFUSED","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.95626 +"1064","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","No influence at all","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","LESS THAN 3 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","Yes","Yes","Yes","MALE","35-44","35-44",40,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","BLACK AFRICAN","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","4","YES","AGED 0-3","AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.59775 +"1065","Labour",NA,"7","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","LESS THAN 3 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",42,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","STILL STUDYING","NON-WHITE","BLACK AFRICAN","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.57945 +"1066","Undecided","Undecided","3","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","LESS THAN 3 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",32,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.4663 +"1067","Undecided","Undecided","4","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Nothing at all","Needs a great deal of improvement","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","LESS THAN 3 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",37,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","BLACK AFRICAN","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","4","YES","AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.88779 +"1068","Labour",NA,"9","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A great deal","A great deal","Could be improved quite a lot","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","A great deal of influence","A great deal of influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","LESS THAN 3 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","Yes","Yes","Yes","Yes","No","Yes","Yes","MALE","45-54","45-54",45,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","BLACK AFRICAN","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.65176 +"1069","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","LESS THAN 3 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","45-54","45-54",46,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","BLACK AFRICAN","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","4","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.99888 +"1070","Undecided","Liberal Democrats (Lib Dem)","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",35,"AB","B","NOT WORKING - HOUSEWIFE","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","NOT WORKING - HOUSEWIFE","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.30953 +"1071","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Nothing at all","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Tend to disagree","Tend to agree","Not very much influence","Some influence","Fairly involved","Not at all involved","no Yes - where living now","Yes - another address","no No","no Don't know","Very strong","No - have never seen it","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 1 AND 2 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",42,"DE","E","NOT WORKING - HOUSEWIFE","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","NOT WORKING - HOUSEWIFE","C £6,500 - £7,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","4","3","YES","AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.47958 +"1072","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","no No","Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 3 AND 4 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",51,"DE","E","UNEMPLOYED AND SEEKING WORK","SCOTLAND","DON'T KNOW","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","UNEMPLOYED AND SEEKING WORK","A UP TO £4,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.59828 +"1073","Would not vote",NA,"3","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Don't know","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not very involved","no Yes - where living now","Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",26,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","E £9,500 - £11,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.63489 +"1074","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Not very much influence","No influence at all","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",50,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","OTHER","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.58594 +"1075","Liberal Democrats (Lib Dem)",NA,"5","5","Contacted a local councillor or MP/MSP/WAM","Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Needs a great deal of improvement","Strongly agree","Tend to disagree","Strongly disagree","Strongly disagree","Strongly agree","No influence at all","No influence at all","Very involved","Very involved","no Yes - where living now","Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",37,"DE","E","UNEMPLOYED AND SEEKING WORK","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","UNEMPLOYED AND SEEKING WORK","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.99758 +"1076","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Don't know","Tend to agree","Tend to agree","Don't know","Tend to agree","Tend to agree","Some influence","Not very much influence","Not at all involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","25-34","25-34",31,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SOUTH WEST","OTHER","WHITE","WHITE OTHER",NA,"YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.81414 +"1077","Conservative",NA,"10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Don't know","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",35,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","OTHER",NA,"FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","1","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.36012 +"1078","Conservative",NA,"10 (Absolutely certain to vote)","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Don't know","Tend to disagree","Strongly agree","Strongly agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Strongly disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",26,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","MASTERS/PHD OR EQUIVALENT","NON-WHITE","BLACK AFRICAN","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","E £9,500 - £11,499","OTHER",NA,"PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.64288 +"1079","Would not vote",NA,"4","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Strongly disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to disagree","Tend to disagree","Tend to disagree","Strongly disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",20,"AB","B","SELF-EMPLOYED","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OTHER",NA,"FAMILY","SINGLE - NOT PARENT/GUARDIAN","4","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.52526 +"1080","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly disagree","Strongly agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",64,"AB","A","RETIRED","SCOTLAND","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.7262 +"1081","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",42,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","NO","SELF-EMPLOYED","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.71821 +"1082","Undecided","Green Party","8","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",54,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Green Party","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.51999 +"1083","Would not vote",NA,"2","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","A fair amount","Nothing at all","Could be improved quite a lot","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","FEMALE","65+","75+",78,"DE","D","RETIRED","SCOTLAND","OTHER","WHITE","WHITE BRITISH",NA,"NO","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.89382 +"1084","Labour",NA,"9","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Don't know","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","60-64","55-64",61,"C2","C2","SELF-EMPLOYED","SOUTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","SELF-EMPLOYED","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.17471 +"1085","Undecided","Undecided","Don't know","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Don't know","Tend to agree","Tend to agree","Don't know","Tend to agree","Don't know","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Don't know","Don't know","Don't know","Don't know","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Don't know","Don't know","Don't know","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 1 AND 2 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",36,"C2","C2","NOT WORKING - HOUSEWIFE","LONDON","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN INDIAN","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.46936 +"1086","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Needs a great deal of improvement","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Neither agree nor disagree","Not very much influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","25-34","25-34",30,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","BLACK AFRICAN","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","B £4,500 - £6,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","SINGLE - NOT PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.49895 +"1087","Labour",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to agree","Don't know","Neither agree nor disagree","Tend to agree","Tend to disagree","No influence at all","No influence at all","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Don't know","Don't know","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Don't know","Neither agree nor disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",40,"DE","D","NOT WORKING - HOUSEWIFE","LONDON","NO FORMAL QUALIFICATIONS","NON-WHITE","BLACK AFRICAN","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.48686 +"1088","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","Don't know","no Null","Not at all interested","Nothing at all","Not very much","Works extremely well and could not be improved","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Don't know","Don't know","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 1 AND 2 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",31,"C1","C1","NOT WORKING - HOUSEWIFE","LONDON","MASTERS/PHD OR EQUIVALENT","NON-WHITE","ASIAN INDIAN",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.34251 +"1089","Undecided","Undecided","8","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Works extremely well and could not be improved","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",36,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)",NA,"REFUSED","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.6797 +"1090","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Needs a great deal of improvement","Tend to agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 3 AND 4 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",59,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.04032 +"1091","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 2 AND 3 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","35-44","35-44",42,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","EAST MIDLANDS","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","MARRIED - PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.65466 +"1092","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly disagree","Strongly disagree","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 4 AND 5 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",20,"DE","E","UNEMPLOYED AND SEEKING WORK","NORTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"NO","UNEMPLOYED AND SEEKING WORK","DON'T KNOW","BELONGS TO HOUSING ASSOCIATION","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.19189 +"1093","Conservative",NA,"10 (Absolutely certain to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","65+","65-74",68,"AB","B","RETIRED","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","NO","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.90319 +"1094","Would not vote",NA,"1 (Absolutely certain not to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","60-64","55-64",63,"AB","B","RETIRED","SOUTH WEST","MASTERS/PHD OR EQUIVALENT","NON-WHITE","MIXED WHITE/BLACK CARIBBEAN",NA,"NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.43145 +"1095","Undecided","Conservative","8","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","A fair amount","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",50,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.35786 +"1096","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","No","No","No","No","No","No","FEMALE","35-44","35-44",38,"AB","B","SELF-EMPLOYED","NORTH WEST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.12408 +"1097","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Strongly disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",52,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","OTHER","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","N £75,000 - £99,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.46641 +"1098","Undecided","Undecided","10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Needs a great deal of improvement","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Some influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",27,"C2","C2","NOT WORKING - HOUSEWIFE","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.49513 +"1099","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","75+",77,"DE","E","RETIRED","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","C £6,500 - £7,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.9007 +"1100","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","75+",82,"C1","C1","RETIRED","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","RETIRED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.70812 +"1101","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","A great deal","A great deal","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Tend to agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","No","Yes","No","No","Yes","Yes","Yes","MALE","65+","65-74",73,"C1","C1","RETIRED","SCOTLAND","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.26726 +"1102","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",70,"DE","E","RETIRED","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","NO","RETIRED","E £9,500 - £11,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.50678 +"1103","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",45,"C1","C1","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Labour","NO","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.36756 +"1104","Undecided","Undecided","10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 4 AND 5 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",46,"C2","C2","NOT WORKING - HOUSEWIFE","NORTH WEST","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN BANGLADESHI","Undecided","YES","NOT WORKING - HOUSEWIFE","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.43048 +"1105","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Strongly disagree","Strongly disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Strongly disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","75+",75,"DE","D","RETIRED","NORTH WEST","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","YES","RETIRED","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.69287 +"1106","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 4 AND 5 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",50,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.75449 +"1107","Labour",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",80,"DE","D","RETIRED","NORTH WEST","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.35385 +"1108","Would not vote",NA,"2","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Strongly disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","18-24","18-24",18,"DE","D","FULL TIME STUDENT","LONDON","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN OTHER",NA,"NO","SELF-EMPLOYED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.39036 +"1109","Undecided","Conservative","9","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Some influence","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","65+","65-74",72,"C1","C1","RETIRED","EAST MIDLANDS","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.88919 +"1110","Conservative",NA,"9","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","A great deal of influence","Some influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Strongly disagree","Don't know","Strongly agree","Neither agree nor disagree","Don't know","Don't know","Strongly disagree","Strongly disagree","Tend to disagree","Strongly agree","Strongly disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","65+","65-74",67,"C2","C2","RETIRED","EAST MIDLANDS","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.54207 +"1111","Green Party",NA,"10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved in small ways but mainly works well","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Some influence","Fairly involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","Fairly strong","No - but have seen it before then","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","FEMALE","65+","65-74",68,"AB","B","RETIRED","SOUTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Green Party","YES","RETIRED","F £11,500 - £13,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.46539 +"1112","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Tend to disagree","Strongly disagree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 5 AND 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","18-24","18-24",23,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","C £6,500 - £7,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.34193 +"1113","Undecided","Scottish/Welsh Nationalist","2","9","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",45,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SCOTLAND","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.5571 +"1114","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Some influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","MALE","65+","65-74",66,"C1","C1","RETIRED","SCOTLAND","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","RETIRED","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.32851 +"1115","Undecided","Undecided","5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",41,"C2","C2","NOT WORKING - HOUSEWIFE","SCOTLAND","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","NO","SELF-EMPLOYED","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.7604 +"1116","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Nothing at all","Needs a great deal of improvement","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Strongly agree","Not very much influence","Some influence","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",33,"DE","E","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","SCOTLAND","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","A UP TO £4,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.42587 +"1117","Undecided","Conservative","10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",43,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.81903 +"1118","Green Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Not very much influence","Some influence","Not at all involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to disagree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","No","Yes","No","No","No","No","No","FEMALE","45-54","45-54",52,"C2","C2","SELF-EMPLOYED","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Green Party","YES","SELF-EMPLOYED","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.80981 +"1119","Undecided","Green Party","9","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Don't know","Don't know","no Yes - where living now","no Yes - another address","no No","Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",46,"DE","E","NOT WORKING - HOUSEWIFE","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)",NA,"REFUSED","Green Party","YES","NOT WORKING - HOUSEWIFE","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","WID/DIV/SEP - PARENT/GUARDIAN","4","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.99578 +"1120","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Don't know","Strongly disagree","Strongly disagree","Don't know","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Don't know","Don't know","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 4 AND 5 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",30,"DE","D","NOT WORKING - HOUSEWIFE","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.07072 +"1121","Would not vote",NA,"1 (Absolutely certain not to vote)","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Some influence","Not very much influence","Fairly involved","Fairly involved","no Yes - where living now","no Yes - another address","no No","Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Strongly disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",39,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE OTHER",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.21989 +"1122","Undecided","Green Party","10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Some influence","Not very much influence","Not very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",51,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE OTHER","Green Party","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.77174 +"1123","Labour",NA,"7","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",34,"C1","C1","UNEMPLOYED AND SEEKING WORK","WEST MIDLANDS","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","NON-WHITE","ASIAN INDIAN","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.40565 +"1124","Labour",NA,"8","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 2 AND 3 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","35-44","35-44",39,"DE","D","NOT IN PAID WORK FOR OTHER REASON","WEST MIDLANDS","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","UNEMPLOYED AND SEEKING WORK","B £4,500 - £6,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.91876 +"1125","Labour",NA,"8","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",32,"DE","D","NOT IN PAID WORK FOR OTHER REASON","WEST MIDLANDS","OTHER","NON-WHITE","ASIAN PAKISTANI","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.44483 +"1126","Conservative",NA,"10 (Absolutely certain to vote)","9","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Not very much influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",32,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","WID/DIV/SEP - PARENT/GUARDIAN","3","2","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.21034 +"1127","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"MORE THAN 6 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","65+","65-74",67,"AB","B","RETIRED","WEST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","NO","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.9051 +"1128","Undecided","Undecided","8","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","65+","65-74",65,"C2","C2","RETIRED","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","NON-WHITE","BLACK OTHER","Undecided","YES","RETIRED","REFUSED","REFUSED",NA,"POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","REFUSED","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.41992 +"1129","Labour",NA,"6","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","75+",76,"DE","E","RETIRED","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","C £6,500 - £7,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.5962 +"1130","Labour",NA,"5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Don't know","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Don't know","Neither agree nor disagree","Neither agree nor disagree","Don't know","Don't know","Tend to disagree","Neither agree nor disagree","Don't know","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",36,"C2","C2","NOT WORKING - HOUSEWIFE","NORTH WEST","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","C £6,500 - £7,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.53876 +"1131","Undecided","Undecided","10 (Absolutely certain to vote)","5","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Don't know","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","60-64","55-64",64,"C1","C1","RETIRED","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","YES","RETIRED","F £11,500 - £13,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.56153 +"1132","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","A fair amount","Nothing at all","Needs a great deal of improvement","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 6 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",27,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.52453 +"1133","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved in small ways but mainly works well","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly disagree","Tend to agree","Tend to disagree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","18-24","18-24",23,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","MASTERS/PHD OR EQUIVALENT","NON-WHITE","MIXED WHITE/BLACK AFRICAN","Liberal Democrats (Lib Dem)","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","F £11,500 - £13,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.5065 +"1134","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","25-34","25-34",29,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","YORKS AND HUMBR","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE OTHER","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.78538 +"1135","Undecided","Conservative","8","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","No influence at all","No influence at all","Very involved","Very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly disagree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 6 AND 12 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","18-24","18-24",19,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","A UP TO £4,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.49588 +"1136","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Strongly disagree","Strongly agree","Strongly agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Tend to agree","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","65+","75+",82,"AB","B","RETIRED","YORKS AND HUMBR","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","H £15,500 - £17,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.82116 +"1137","Undecided","Labour","10 (Absolutely certain to vote)","4","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A great deal","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","45-54","45-54",54,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","YORKS AND HUMBR","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.08274 +"1138","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A great deal","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","55-59","55-64",55,"AB","B","SELF-EMPLOYED","YORKS AND HUMBR","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","YES","SELF-EMPLOYED","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.22315 +"1139","Liberal Democrats (Lib Dem)",NA,"9","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","65+","65-74",68,"C1","C1","SELF-EMPLOYED","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","SELF-EMPLOYED","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.86295 +"1140","Undecided","Conservative","9","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","55-59","55-64",55,"AB","A","NOT WORKING - HOUSEWIFE","SOUTH EAST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",2.06354 +"1141","Labour",NA,"7","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Don't know","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Don't know","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",23,"C1","C1","FULL TIME STUDENT","EASTERN","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","SINGLE - NOT PARENT/GUARDIAN","5+","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.22758 +"1142","Undecided","Labour","5","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",68,"C2","C2","RETIRED","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","F £11,500 - £13,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.70042 +"1143","Conservative",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A great deal","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","65+","65-74",70,"C1","C1","RETIRED","NORTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.84466 +"1144","Undecided","UK Independence Party","1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","60-64","55-64",61,"C1","C1","RETIRED","NORTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","UK Independence Party","YES","RETIRED","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.92123 +"1145","Would not vote",NA,"5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Strongly disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Strongly disagree","Strongly disagree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 3 AND 6 MONTHS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",24,"DE","E","UNEMPLOYED AND SEEKING WORK","WALES","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"YES","UNEMPLOYED AND SEEKING WORK","G £13,500 - £15,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.52449 +"1146","Labour",NA,"9","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","No","No","No","No","No","No","MALE","25-34","25-34",34,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",3.04775 +"1147","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",65,"AB","B","RETIRED","SOUTH WEST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.58646 +"1148","Undecided","Undecided","1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Don't know","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",31,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.83859 +"1149","Other",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A great deal","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Neither agree nor disagree","Some influence","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Strongly disagree","Strongly disagree","Strongly agree","Tend to agree","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","45-54","45-54",46,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Other","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.53031 +"1150","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",70,"DE","E","RETIRED","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","RETIRED","E £9,500 - £11,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.97628 +"1151","Conservative",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","75+",85,"DE","D","RETIRED","EAST MIDLANDS","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","D £7,500 - £9,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.09519 +"1152","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Very involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Tend to disagree","Tend to disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 4 AND 5 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",33,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","EAST MIDLANDS","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","B £4,500 - £6,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.00389 +"1153","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Strongly disagree","Tend to disagree","Tend to disagree","Strongly agree","Not very much influence","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",58,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EAST MIDLANDS","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","BLACK CARIBBEAN","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.35575 +"1154","Undecided","Conservative","10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",48,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EAST MIDLANDS","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",3.76666 +"1155","Conservative",NA,"10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Works extremely well and could not be improved","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","A great deal of influence","Some influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","35-44","35-44",41,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EAST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",4.144 +"1156","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Don't know","Tend to agree","Neither agree nor disagree","Some influence","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","18-24","18-24",24,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.54185 +"1157","Undecided","Green Party","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",62,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SOUTH EAST","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Green Party","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","REFUSED","OTHER",NA,"POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.92418 +"1158","UK Independence Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Not very much influence","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",36,"C2","C2","SELF-EMPLOYED","SOUTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","UK Independence Party","YES","SELF-EMPLOYED","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.10724 +"1159","Undecided","Labour","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Some influence","Not very much influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","Yes","Yes","Yes","FEMALE","45-54","45-54",49,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.84962 +"1160","Conservative",NA,"8","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Strongly disagree","Strongly disagree","Tend to agree","Strongly agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",51,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.27348 +"1161","Undecided","Undecided","5","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",23,"C1","C1","UNEMPLOYED AND SEEKING WORK","SOUTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","REFUSED","OTHER",NA,"FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.91437 +"1162","Green Party",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Tend to disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",51,"C1","C1","UNEMPLOYED AND SEEKING WORK","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Green Party","NO","RETIRED","I £17,500 - £24,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.96011 +"1163","Undecided","Undecided","10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Works extremely well and could not be improved","Tend to agree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","A great deal of influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly disagree","Tend to agree","Tend to disagree","Tend to disagree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",38,"AB","B","NOT WORKING - HOUSEWIFE","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.30953 +"1164","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",69,"C2","C2","RETIRED","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"NO","RETIRED","E £9,500 - £11,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.77016 +"1165","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly agree","Don't know","Tend to disagree","Neither agree nor disagree","Strongly agree","Some influence","Not very much influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","25-34","25-34",26,"C2","C2","NOT WORKING - HOUSEWIFE","WEST MIDLANDS","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","NOT WORKING - HOUSEWIFE","F £11,500 - £13,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","4","3","YES","AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.78652 +"1166","Would not vote",NA,"2","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"BETWEEN 6 AND 12 MONTHS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","35-44","35-44",43,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","WEST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.00018 +"1167","Scottish/Welsh Nationalist",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","No","No","No","No","No","No","MALE","45-54","45-54",47,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","N £75,000 - £99,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.97642 +"1168","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"Yes","No","Yes","No","No","No","No","No","MALE","65+","75+",77,"C1","C1","RETIRED","SCOTLAND","OTHER","WHITE","WHITE BRITISH","Labour","YES","RETIRED","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.43029 +"1169","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",30,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SCOTLAND","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.90683 +"1170","Undecided","Undecided","8","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Strongly disagree","Don't know","Neither agree nor disagree","Strongly agree","Strongly agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Don't know","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",20,"AB","B","FULL TIME STUDENT","SCOTLAND","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.44849 +"1171","Undecided","Undecided","8","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Strongly agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BETWEEN 3 AND 4 YEARS","NEVER BUT I HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",59,"C1","C1","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","NORTH WEST","OTHER","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","D £7,500 - £9,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.7518 +"1172","Liberal Democrats (Lib Dem)",NA,"8","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",32,"AB","B","SELF-EMPLOYED","YORKS AND HUMBR","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.40627 +"1173","Conservative",NA,"8","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",43,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","N £75,000 - £99,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.09927 +"1174","Undecided","Undecided","2","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",21,"C1","C1","FULL TIME STUDENT","YORKS AND HUMBR","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Undecided","YES","FULL TIME STUDENT","G £13,500 - £15,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","2","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.80929 +"1175","Would not vote",NA,"1 (Absolutely certain not to vote)","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",48,"C1","C1","NOT IN PAID WORK FOR OTHER REASON","YORKS AND HUMBR","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.98057 +"1176","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Could be improved quite a lot","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 5 AND 6 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",42,"DE","D","SELF-EMPLOYED","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.41715 +"1177","Liberal Democrats (Lib Dem)",NA,"5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Some influence","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",55,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","YORKS AND HUMBR","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","H £15,500 - £17,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.01807 +"1178","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",65,"DE","D","RETIRED","SOUTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","RETIRED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.96882 +"1179","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - but have seen it before then","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","60-64","55-64",61,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SOUTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.96166 +"1180","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","45-54","45-54",45,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","BLACK AFRICAN","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","1","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.6906 +"1181","Refused","Undecided","10 (Absolutely certain to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","A fair amount","Not very much","Could be improved quite a lot","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Don't know","Don't know","Strongly disagree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","25-34","25-34",27,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN BANGLADESHI","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","G £13,500 - £15,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","5+","2","YES","no AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.64949 +"1182","Undecided","Refused","10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 1 AND 2 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","65+","75+",76,"DE","E","RETIRED","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Refused","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.04138 +"1183","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to disagree","Strongly agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",40,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","BLACK AFRICAN","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.48686 +"1184","Labour",NA,"5","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","DAILY MIRROR","DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","35-44","35-44",35,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","NON-WHITE","MIXED WHITE/BLACK AFRICAN","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","G £13,500 - £15,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","5+","3","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.48686 +"1185","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Don't know","Don't know","Don't know","Don't know","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Don't know","Don't know","Don't know","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 1 AND 2 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","FEMALE","35-44","35-44",37,"DE","D","FULL TIME STUDENT","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","BLACK AFRICAN",NA,"YES","FULL TIME STUDENT","D £7,500 - £9,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","2","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.48686 +"1186","Undecided","Undecided","3","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",41,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE OTHER","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.09915 +"1187","Labour",NA,"4","2","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Some influence","Not at all involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",72,"DE","D","RETIRED","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","NO","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.92071 +"1188","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Needs a great deal of improvement","Strongly disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Strongly disagree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","45-54","45-54",48,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","WID/DIV/SEP - PARENT/GUARDIAN","3","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.53921 +"1189","Undecided","Liberal Democrats (Lib Dem)","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Some influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","65+","65-74",74,"AB","A","RETIRED","YORKS AND HUMBR","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.10612 +"1190","Conservative",NA,"10 (Absolutely certain to vote)","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly disagree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Tend to agree","Tend to agree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 4 AND 5 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","60-64","55-64",60,"AB","B","RETIRED","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.25457 +"1191","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Some influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","65+","75+",78,"AB","A","RETIRED","YORKS AND HUMBR","OTHER",NA,"REFUSED","Conservative","YES","RETIRED","I £17,500 - £24,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.19458 +"1192","Labour",NA,"8","7","no Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Could be improved quite a lot","Strongly disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - have never seen it","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","FEMALE","18-24","18-24",19,"C1","C1","FULL TIME STUDENT","YORKS AND HUMBR","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","F £11,500 - £13,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","SINGLE - NOT PARENT/GUARDIAN","5+","2","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.00877 +"1193","Labour",NA,"2","Don't know","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","A great deal","Not very much","Don't know","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","no No","Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 4 AND 5 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",0,"DE","D","UNEMPLOYED AND SEEKING WORK","LONDON","GCSE/O-LEVEL/CSE","WHITE","WHITE OTHER","Labour","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.71955 +"1194","Labour",NA,"6","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not at all involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",26,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","NON-WHITE","BLACK AFRICAN","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.41679 +"1195","Undecided","Labour","5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",41,"C1","C1","SELF-EMPLOYED","WEST MIDLANDS","MASTERS/PHD OR EQUIVALENT","NON-WHITE","ASIAN PAKISTANI","Labour","YES","SELF-EMPLOYED","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","4","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.2925 +"1196","Labour",NA,"10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly agree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Some influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to disagree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","LESS THAN 3 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","18-24","18-24",21,"C2","C2","FULL TIME STUDENT","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","BLACK AFRICAN","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","H £15,500 - £17,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","SINGLE - NOT PARENT/GUARDIAN","4","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.47445 +"1197","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","LESS THAN 3 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","35-44","35-44",42,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","BLACK AFRICAN","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","4","YES","no AGED 0-3","AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.82948 +"1198","Labour",NA,"10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","LESS THAN 3 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","45-54","45-54",46,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","BLACK AFRICAN","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.6906 +"1199","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","LESS THAN 3 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","25-34","25-34",34,"C2","C2","NOT WORKING - HOUSEWIFE","LONDON","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","5","YES","AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.95285 +"1200","Labour",NA,"8","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","LESS THAN 3 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","FEMALE","35-44","35-44",36,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","BLACK AFRICAN","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.46936 +"1201","Undecided","Would not vote","1 (Absolutely certain not to vote)","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",58,"AB","B","NOT WORKING - HOUSEWIFE","NORTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Would not vote","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.3165 +"1202","Labour",NA,"5","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","A fair amount","Nothing at all","Could be improved quite a lot","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 4 AND 5 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",42,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","2","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.74635 +"1203","Would not vote",NA,"5","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","A fair amount","A fair amount","Needs a great deal of improvement","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Some influence","Not very much influence","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Strongly disagree","Don't know","Neither agree nor disagree","Tend to disagree","Strongly agree","Strongly disagree","Strongly disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Tend to agree","Don't know","Don't know","Don't know","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",25,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","OTHER","WHITE","WHITE OTHER",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.89207 +"1204","Undecided","Would not vote","1 (Absolutely certain not to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Don't know","Don't know","Don't know","Don't know","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","75+",77,"DE","D","RETIRED","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","NON-WHITE","BLACK AFRICAN","Would not vote","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.6416 +"1205","Undecided","Undecided","Don't know","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Nothing at all","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Not very much influence","No influence at all","Not at all involved","Fairly involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Tend to disagree","Tend to disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",20,"DE","E","UNEMPLOYED AND SEEKING WORK","WEST MIDLANDS","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Undecided","NO","UNEMPLOYED AND SEEKING WORK","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","SINGLE - NOT PARENT/GUARDIAN","4","1","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.53766 +"1206","Labour",NA,"6","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","A fair amount","Nothing at all","Don't know","Neither agree nor disagree","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Tend to disagree","Tend to agree","Don't know","Neither agree nor disagree","Don't know","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to disagree","Don't know","Don't know","Don't know","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",30,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","WEST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.43369 +"1207","UK Independence Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Tend to disagree","Tend to disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",71,"C2","C2","RETIRED","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","UK Independence Party","YES","RETIRED","J £25,000 - £29,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.05009 +"1208","Green Party",NA,"8","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","MALE","45-54","45-54",51,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Green Party","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.72895 +"1209","Labour",NA,"10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A great deal","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",54,"DE","E","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","SOUTH WEST","OTHER","WHITE","WHITE BRITISH","Labour","YES","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.75716 +"1210","Undecided","Undecided","1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Don't know","Don't know","Don't know","Don't know","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","25-34","25-34",26,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","GCSE/O-LEVEL/CSE","WHITE","WHITE OTHER","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.43145 +"1211","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Works extremely well and could not be improved","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Don't know","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly disagree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","No","Yes","Yes","No","No","Yes","No","FEMALE","25-34","25-34",32,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","MASTERS/PHD OR EQUIVALENT","NON-WHITE","ASIAN INDIAN","Liberal Democrats (Lib Dem)","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.60549 +"1212","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Not very much","Not very much","Works extremely well and could not be improved","Neither agree nor disagree","Don't know","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Tend to agree","Don't know","Don't know","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","60-64","55-64",62,"DE","E","UNEMPLOYED AND SEEKING WORK","LONDON","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN OTHER",NA,"YES","UNEMPLOYED AND SEEKING WORK","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.45725 +"1213","Undecided","Labour","7","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","Yes","No","Yes","Yes","No","Yes","Yes","Yes","MALE","45-54","45-54",51,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","OTHER","NON-WHITE","MIXED WHITE/BLACK CARIBBEAN","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.99888 +"1214","Undecided","Liberal Democrats (Lib Dem)","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",42,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.36654 +"1215","Labour",NA,"6","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Strongly disagree","Don't know","Tend to disagree","Strongly agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Don't know","Neither agree nor disagree","Don't know","Tend to disagree","Tend to disagree","Don't know","Don't know","Don't know","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",29,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.54368 +"1216","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly disagree","Strongly disagree","Tend to agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",33,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","GCSE/O-LEVEL/CSE","WHITE","WHITE OTHER",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","SINGLE - PARENT/GUARDIAN","2","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.16775 +"1217","Refused","Refused","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","55-59","55-64",58,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","EASTERN","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Refused","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.33232 +"1218","Liberal Democrats (Lib Dem)",NA,"5","4","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly disagree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",27,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN PAKISTANI","Liberal Democrats (Lib Dem)","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.70359 +"1219","Undecided","Labour","Don't know","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Strongly disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","DON'T KNOW","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",23,"DE","D","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","NORTH WEST","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN BANGLADESHI","Labour","NO","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.51152 +"1220","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Don't know","Strongly disagree","Strongly agree","Tend to agree","Not very much influence","No influence at all","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to agree","Strongly disagree","Strongly disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",57,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.56367 +"1221","Undecided","Undecided","4","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","Don't know","no Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",29,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","ASIAN BANGLADESHI","Undecided","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.94314 +"1222","Undecided","Undecided","Don't know","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Nothing at all","Nothing at all","Could be improved quite a lot","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Tend to agree","Don't know","Don't know","Don't know","Neither agree nor disagree","Tend to agree","Don't know","Tend to agree","Don't know","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Don't know","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly disagree","Strongly disagree","Don't know","Don't know","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",46,"DE","D","UNEMPLOYED AND SEEKING WORK","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE OTHER","Undecided","YES","UNEMPLOYED AND SEEKING WORK","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.08694 +"1223","Labour",NA,"10 (Absolutely certain to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","65-74",65,"DE","D","RETIRED","NORTH WEST","NO FORMAL QUALIFICATIONS","NON-WHITE","ASIAN PAKISTANI","Labour","YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.27015 +"1224","Labour",NA,"7","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Needs a great deal of improvement","Tend to disagree","Don't know","Tend to disagree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Don't know","Strongly disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",64,"DE","E","RETIRED","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE IRISH","Labour","YES","RETIRED","D £7,500 - £9,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.98787 +"1225","Green Party",NA,"6","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly disagree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 4 AND 5 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",42,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Green Party","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","WID/DIV/SEP - PARENT/GUARDIAN","3","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.52057 +"1226","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","A fair amount","A fair amount","Needs a great deal of improvement","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","No influence at all","No influence at all","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","75+",75,"C2","C2","RETIRED","EAST MIDLANDS","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH",NA,"YES","RETIRED","REFUSED","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.95522 +"1227","Other",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Needs a great deal of improvement","Tend to agree","Tend to disagree","Strongly disagree","Strongly disagree","Strongly agree","Not very much influence","Not very much influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","Strongly disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Neither agree nor disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","FEMALE","65+","65-74",65,"C1","C1","RETIRED","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Other","NO","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","H £15,500 - £17,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.05472 +"1228","Would not vote",NA,"1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Don't know","Don't know","Tend to disagree","Strongly disagree","Don't know","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Strongly disagree","Strongly agree","Strongly agree","Tend to agree","Don't know","Don't know","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Don't know","Don't know","Don't know","Don't know","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",19,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE OTHER",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.3863 +"1229","Conservative",NA,"9","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Not very much influence","No influence at all","Fairly involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",79,"AB","B","RETIRED","SOUTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.79356 +"1230","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Not very much influence","Some influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 1 AND 2 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",60,"AB","B","RETIRED","WEST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","E £9,500 - £11,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.88043 +"1231","UK Independence Party",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",24,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EASTERN","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","UK Independence Party","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.49307 +"1232","Would not vote",NA,"3","1 (Absolutely certain not to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Tend to disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Strongly agree","Neither agree nor disagree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","FEMALE","65+","75+",82,"DE","E","RETIRED","EAST MIDLANDS","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH",NA,"YES","RETIRED","DON'T KNOW","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",3.63045 +"1233","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to agree","Tend to disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly disagree","Tend to disagree","Strongly agree","Tend to agree","Strongly disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","18-24","18-24",23,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE OTHER","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.30676 +"1234","Undecided","Undecided","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","no Yes - another address","No","no Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",21,"C1","C1","FULL TIME STUDENT","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","YES","FULL TIME STUDENT","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.77467 +"1235","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Not very much influence","No influence at all","Fairly involved","Not very involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Strongly agree","Strongly agree","Tend to disagree","Strongly agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","MALE","18-24","18-24",19,"C1","C1","FULL TIME STUDENT","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","ASIAN PAKISTANI","Liberal Democrats (Lib Dem)","YES","FULL TIME STUDENT","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.23434 +"1236","Would not vote",NA,"2","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",20,"C1","C1","FULL TIME STUDENT","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","MIXED WHITE/BLACK CARIBBEAN",NA,"YES","FULL TIME STUDENT","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.27568 +"1237","Labour",NA,"9","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","no FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","18-24","18-24",24,"C1","C1","SELF-EMPLOYED","WEST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","F £11,500 - £13,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.52525 +"1238","Labour",NA,"10 (Absolutely certain to vote)","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","no Yes - where living now","Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 4 AND 5 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",23,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","A-LEVEL OR EQUIVALENT (=NVQ3)","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","D £7,500 - £9,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - PARENT/GUARDIAN","REFUSED","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.78907 +"1239","Labour",NA,"7","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 4 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",34,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","G £13,500 - £15,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.65567 +"1240","Labour",NA,"10 (Absolutely certain to vote)","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","A fair amount","A fair amount","Could be improved quite a lot","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",22,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","D £7,500 - £9,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.52615 +"1241","Undecided","Labour","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Strongly agree","No influence at all","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly disagree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Strongly disagree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","65+","75+",83,"C1","C1","RETIRED","EASTERN","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","RETIRED","G £13,500 - £15,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.69088 +"1242","Conservative",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved in small ways but mainly works well","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Some influence","Not very much influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","60-64","55-64",62,"AB","B","RETIRED","EASTERN","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.69433 +"1243","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Don't know","Don't know","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","55-59","55-64",58,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.5317 +"1244","Labour",NA,"5","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A fair amount","Needs a great deal of improvement","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to disagree","Tend to disagree","Strongly agree","Tend to agree","Strongly disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",61,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","GCSE/O-LEVEL/CSE","NON-WHITE","BLACK OTHER","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BELONGS TO HOUSING ASSOCIATION","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.44283 +"1245","Labour",NA,"7","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",53,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.60188 +"1246","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","45-54","45-54",47,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.60188 +"1247","Undecided","Labour","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Needs a great deal of improvement","Tend to agree","Don't know","Don't know","Strongly agree","Don't know","Not very much influence","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","45-54","45-54",49,"AB","A","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","WALES","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.94931 +"1248","Undecided","Conservative","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A great deal","Could be improved quite a lot","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","No influence at all","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to disagree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",42,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.10583 +"1249","Liberal Democrats (Lib Dem)",NA,"8","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","A fair amount","Needs a great deal of improvement","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Don't know","Strongly agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Strongly disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Don't know","Strongly disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",19,"DE","D","FULL TIME STUDENT","WALES","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","BEING BOUGHT ON A MORTGAGE","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.52094 +"1250","Undecided","Conservative","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to agree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Strongly disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",69,"C1","C1","RETIRED","EAST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","H £15,500 - £17,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.26725 +"1251","Undecided","Labour","7","3","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","BETWEEN 3 AND 6 MONTHS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",23,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","OTHER","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.82934 +"1252","Would not vote",NA,"3","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","YES, BUT DON'T KNOW TYPE","BETWEEN 6 AND 12 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","25-34","25-34",28,"DE","E","UNEMPLOYED AND SEEKING WORK","WALES","OTHER","WHITE","WHITE BRITISH",NA,"YES","UNEMPLOYED AND SEEKING WORK","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.81329 +"1253","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","A fair amount","Works extremely well and could not be improved","Strongly agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Strongly disagree","Strongly disagree","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Strongly agree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Neither agree nor disagree","Tend to disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 1 AND 2 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","45-54","45-54",52,"DE","D","NOT IN PAID WORK BECAUSE OF LONG TERM ILLNESS OR DISABILITY","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.87278 +"1254","Would not vote",NA,"1 (Absolutely certain not to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","A great deal","A fair amount","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Neither agree nor disagree","Strongly disagree","Tend to disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","NO","LESS THAN 3 MONTHS","LESS THAN AROUND ONCE A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",19,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","NON-WHITE","MIXED WHITE/BLACK CARIBBEAN",NA,"NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","SINGLE - NOT PARENT/GUARDIAN","5+","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.49897 +"1255","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","no Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Not very much","Nothing at all","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","Some influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","Strongly disagree","Strongly agree","Tend to agree","Strongly disagree","Neither agree nor disagree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 6 AND 12 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",22,"C2","C2","UNEMPLOYED AND SEEKING WORK","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","DON'T KNOW","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.52655 +"1256","Green Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","Attended political meetings","no Donated money or paid a membership fee to a political party","Taken part in a demonstration, picket or march","Voted in an election","Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Not very much influence","Very involved","Very involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Don't know","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Don't know","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 6 AND 12 MONTHS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","No","No","No","No","No","No","MALE","18-24","18-24",24,"C1","C1","FULL TIME STUDENT","WEST MIDLANDS","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Green Party","YES","FULL TIME STUDENT","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.56493 +"1257","Would not vote",NA,"3","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","45-54","45-54",45,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WEST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.30323 +"1258","Refused","Conservative","10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A fair amount","A fair amount","Works extremely well and could not be improved","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to disagree","Tend to agree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Strongly disagree","Tend to agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","Yes","Yes","Yes","Yes","No","Yes","Yes","MALE","65+","65-74",74,"C2","C2","RETIRED","SOUTH EAST","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Conservative","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.85431 +"1259","Labour",NA,"5","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","No influence at all","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Tend to disagree","Strongly disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","25-34","25-34",34,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EAST MIDLANDS","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","2","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",4.48015 +"1260","Labour",NA,"9","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","No influence at all","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","MALE","35-44","35-44",36,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN PAKISTANI","Labour","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","REFUSED","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.29368 +"1261","Conservative",NA,"10 (Absolutely certain to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Strongly agree","Tend to disagree","Strongly agree","Strongly agree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","No - but have seen it before then","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Neither agree nor disagree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","FEMALE","35-44","35-44",44,"AB","A","NOT WORKING - HOUSEWIFE","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.53077 +"1262","Liberal Democrats (Lib Dem)",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Strongly agree","Tend to agree","Strongly agree","Strongly agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Strongly disagree","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Strongly agree","Neither agree nor disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","FEMALE","55-59","55-64",57,"C1","C1","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","O MORE THAN £100,000","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.4817 +"1263","Conservative",NA,"4","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Nothing at all","Could be improved in small ways but mainly works well","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly agree","Tend to agree","No influence at all","No influence at all","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",24,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","SOUTH EAST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN INDIAN","Conservative","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","4","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.79911 +"1264","Green Party",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","Contacted a local councillor or MP/MSP/WAM","Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved quite a lot","Don't know","Don't know","Don't know","Tend to agree","Don't know","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Tend to agree","Tend to agree","Strongly agree","Don't know","Don't know","Don't know","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Strongly agree","Tend to agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","35-44","35-44",38,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Green Party","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.65123 +"1265","Undecided","Undecided","1 (Absolutely certain not to vote)","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","Nothing at all","Nothing at all","Needs a great deal of improvement","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly disagree","Tend to disagree","Strongly disagree","Neither agree nor disagree","Neither agree nor disagree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Strongly agree","Strongly disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 5 AND 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","18-24","18-24",23,"DE","D","NOT WORKING - HOUSEWIFE","NORTH WEST","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Undecided","NO","UNEMPLOYED AND SEEKING WORK","C £6,500 - £7,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","5+","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.29831 +"1266","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Not very much influence","No influence at all","Not very involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","Yes - in full","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 1 AND 2 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","35-44","35-44",41,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","GCSE/O-LEVEL/CSE","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","D £7,500 - £9,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","5+","3","YES","AGED 0-3","AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.58842 +"1267","Labour",NA,"10 (Absolutely certain to vote)","10 (Absolutely certain to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to disagree","Strongly disagree","Tend to disagree","Neither agree nor disagree","No influence at all","No influence at all","Not very involved","Not at all involved","no Yes - where living now","Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Tend to disagree","Tend to agree","Strongly disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Strongly agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","45-54","45-54",45,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","D £7,500 - £9,499","RENTED FROM A PRIVATE LANDLORD","RENTED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.73196 +"1268","Scottish/Welsh Nationalist",NA,"8","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Strongly agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","no Yes - where living now","Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to disagree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Strongly agree","Strongly agree","Strongly agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to agree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","FEMALE","65+","65-74",73,"DE","E","RETIRED","WALES","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Scottish/Welsh Nationalist","YES","RETIRED","E £9,500 - £11,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.5734 +"1269","Labour",NA,"7","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Some influence","A great deal of influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - in full","Tend to agree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Strongly agree","Tend to agree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","Yes","Yes","No","No","No","No","No","MALE","65+","75+",82,"AB","B","RETIRED","WALES","MASTERS/PHD OR EQUIVALENT","WHITE","WHITE BRITISH","Labour","YES","RETIRED","C £6,500 - £7,499","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.45117 +"1270","Refused","Refused","Don't know","Refused","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not at all interested","A fair amount","Not very much","Needs a great deal of improvement","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","Yes - another address","no No","no Don't know","Refused","No - but have seen it before then","Neither agree nor disagree","Strongly disagree","Tend to agree","Strongly disagree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Don't know","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","DOWNLOAD MOVIES","no FOR SOMETHING ELSE","ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","DON'T KNOW","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","MALE","35-44","35-44",37,"C1","C1","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","NORTH WEST","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)",NA,"REFUSED","Refused","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","RENTED FROM A PRIVATE LANDLORD","RENTED NET","SINGLE","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.18764 +"1271","Undecided","Labour","8","8","Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","65+","65-74",65,"DE","D","RETIRED","WALES","OTHER","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.66939 +"1272","Labour",NA,"10 (Absolutely certain to vote)","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","Not very much influence","Not very much influence","Fairly involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - but have seen it before then","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Tend to agree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","AROUND ONCE A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",73,"C2","C2","RETIRED","WALES","OTHER","WHITE","WHITE BRITISH","Labour","YES","RETIRED","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.44399 +"1273","Conservative",NA,"10 (Absolutely certain to vote)","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Some influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","FEMALE","60-64","55-64",60,"AB","B","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","WALES","OTHER","WHITE","WHITE BRITISH","Conservative","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","REFUSED","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.8167 +"1274","Liberal Democrats (Lib Dem)",NA,"7","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Not very much influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 4 AND 5 YEARS","2 OR 3 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","FEMALE","60-64","55-64",63,"C2","C2","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","WALES","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Liberal Democrats (Lib Dem)","YES","HAVE PAID JOB - PART TIME (8-29 HOURS PER WEEK)","F £11,500 - £13,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.70474 +"1275","Labour",NA,"8","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","Contacted a local councillor or MP/MSP/WAM","Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved quite a lot","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Some influence","Not very much influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - in full","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","VIA TV SET (THROUGH DIGITAL CABLE)","VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","35-44","35-44",35,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","WHITE","WHITE BRITISH","Labour","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","K £30,000 - £39,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.8637 +"1276","Undecided","Labour","7","4","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","Donate money or pay a membership fee to a charity or campaigning organisation","Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","Take part in a demonstration, picket or march","Vote in an election","Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to agree","Tend to agree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - in full","Neither agree nor disagree","Tend to disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to disagree","Tend to disagree","Strongly agree","Strongly agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Strongly agree","Tend to agree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","35-44","35-44",35,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","M £50,000 - £74,999","RENTED FROM A PRIVATE LANDLORD","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",1.06163 +"1277","Undecided","Undecided","7","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","Not very much","Could be improved quite a lot","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Some influence","Not very much influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Neither agree nor disagree","Strongly agree","Tend to disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Strongly agree","Tend to agree","Tend to agree","Tend to disagree","Neither agree nor disagree","Tend to agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 5 AND 6 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","Yes","Yes","No","No","No","No","No","FEMALE","45-54","45-54",0,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","WALES","A-LEVEL OR EQUIVALENT (=NVQ3)","WHITE","WHITE BRITISH","Undecided","NO","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","G £13,500 - £15,499","OWNED OUTRIGHT BY HOUSEHOLD","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","3","NONE","NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.88358 +"1278","Labour",NA,"6","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","Don't know","no Null","Not very interested","Not very much","Not very much","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Not very much influence","Some influence","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","No - have never seen it","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for th","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","BETWEEN 2 AND 3 YEARS","LESS THAN AROUND ONCE A MONTH","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","No","No","Yes","No","FEMALE","25-34","25-34",34,"DE","E","NOT IN PAID WORK FOR OTHER REASON","LONDON","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Labour","YES","NOT IN PAID WORK FOR OTHER REASON","DON'T KNOW","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","3","1","YES","no AGED 0-3","no AGED 4-5","AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.996 +"1279","Labour",NA,"7","6","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not very interested","A fair amount","A fair amount","Could be improved in small ways but mainly works well","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Some influence","Some influence","Fairly involved","Fairly involved","Yes - where living now","no Yes - another address","no No","no Don't know","Fairly strong","Yes - but only seen/heard clips, eg. on the news","Tend to agree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Tend to disagree","Tend to disagree","Tend to disagree","Tend to disagree","Neither agree nor disagree","Tend to disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Tend to disagree","Tend to disagree","Tend to agree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","No","Yes","Yes","FEMALE","35-44","35-44",40,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","VOCATIONAL QUALIFICATIONS (=NVQ1+2)","NON-WHITE","BLACK AFRICAN","Labour","NO","NOT IN PAID WORK FOR OTHER REASON","I £17,500 - £24,999","RENTED FROM LOCAL AUTHORITY","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","no AGED 0-3","no AGED 4-5","no AGED 6-9","AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.82948 +"1280","Conservative",NA,"9","8","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Not very much","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Not very much influence","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - but have seen it before then","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","THE INDEPENDENT","THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","THE METRO","EVENING STANDARD","I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","No","Yes","Yes","No","No","Yes","No","FEMALE","35-44","35-44",40,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","MIXED WHITE/BLACK AFRICAN","Conservative","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","J £25,000 - £29,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","SINGLE - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.87891 +"1281","Undecided","Labour","8","7","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Fairly interested","A fair amount","A fair amount","Could be improved quite a lot","Tend to agree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Some influence","No influence at all","Not very involved","Not very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Not very strong","Yes - but only seen/heard clips, eg. on the news","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Neither agree nor disagree","Tend to disagree","Strongly disagree","Tend to agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","EVENING STANDARD","no I NEWSPAPER","BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","POPULAR","Yes","No","Yes","Yes","No","No","Yes","No","MALE","35-44","35-44",35,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","NON-WHITE","ASIAN BANGLADESHI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","L £40,000 - £49,999","BEING BOUGHT ON A MORTGAGE","OWNED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",0.59792 +"1282","Labour",NA,"8","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","Not very much","Not very much","Don't know","Don't know","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Not very much influence","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","No - have never seen it","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to disagree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","Tend to agree","Neither agree nor disagree","Tend to agree","Tend to agree","Tend to agree","Neither agree nor disagree","Neither agree nor disagree","Neither agree nor disagree","no Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","Don't know","no Null","Tend to agree","Tend to agree","Tend to agree","Tend to disagree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","no TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","no TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","ADSL BROADBAND","BETWEEN 3 AND 4 YEARS","4 OR 5 TIMES A WEEK","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","BROADSHEET","no MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","Yes","Yes","Yes","Yes","No","Yes","Yes","MALE","25-34","25-34",28,"DE","D","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","LONDON","GCSE/O-LEVEL/CSE","NON-WHITE","ASIAN BANGLADESHI","Labour","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","I £17,500 - £24,999","RENTED FROM LOCAL AUTHORITY","RENTED NET","PRE FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",0.85231 +"1283","Undecided","Undecided","9","1 (Absolutely certain not to vote)","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Fairly interested","A fair amount","A fair amount","Needs a great deal of improvement","Neither agree nor disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Not very involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Tend to disagree","Strongly agree","no Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","no An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Strongly agree","Strongly agree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","TABLOIDS","no NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","Yes","Yes","Yes","FEMALE","65+","65-74",70,"DE","D","RETIRED","EAST MIDLANDS","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","Undecided","YES","RETIRED","REFUSED","RENTED FROM LOCAL AUTHORITY","RENTED NET","POST FAMILY","WID/DIV/SEP - NOT PARENT/GUARDIAN","1",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",2.30831 +"1284","Would not vote",NA,"3","2","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","no Create or sign a paper petition","no Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","no Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","Null","Not at all interested","Nothing at all","Nothing at all","Don't know","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly disagree","No influence at all","No influence at all","Not at all involved","Not at all involved","no Yes - where living now","no Yes - another address","No","no Don't know","I am not a supporter of any political party","No - have never seen it","Strongly disagree","Don't know","Strongly disagree","Don't know","Don't know","Don't know","Don't know","Don't know","Don't know","Strongly agree","Don't know","Don't know","Don't know","Don't know","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","no Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and rep","Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","no Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","no An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Don't know","Don't know","Don't know","Don't know","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","no TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","no TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","no FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","no TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS O","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW",NA,"MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","no MID MARKET","no TABLOID","NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW",NA,NA,"No","No","No","No","No","No","No","No","MALE","18-24","18-24",23,"C2","C2","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EAST MIDLANDS","OTHER","WHITE","WHITE BRITISH",NA,"YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","B £4,500 - £6,499","BELONGS TO HOUSING ASSOCIATION","RENTED NET","FAMILY","MARRIED - PARENT/GUARDIAN","4","2","YES","AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","no NO CHILDREN UNDER 15","no REFUSED",2.84823 +"1285","Refused","Refused","10 (Absolutely certain to vote)","9","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","Created or signed a paper petition","Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","no null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","no Vote in an election","no Contribute to a discussion or campaign online or on social media","Take part in a public consultation","no Don't know","no Null","Very interested","A great deal","Not very much","Could be improved in small ways but mainly works well","Neither agree nor disagree","Strongly disagree","Don't know","Tend to agree","Don't know","Some influence","Not very much influence","Very involved","Very involved","Yes - where living now","no Yes - another address","no No","no Don't know","Very strong","Yes - in full","Neither agree nor disagree","Strongly disagree","Strongly agree","Strongly disagree","Strongly disagree","Strongly disagree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Strongly agree","Strongly agree","Strongly disagree","Neither agree nor disagree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","no Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Neither agree nor disagree","Strongly disagree","Strongly agree","VIA PERSONAL COMPUTER OR LAPTOP AT HOME","VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","no NO ACCESS","FOR SENDING / RECEIVING EMAILS","TO VISIT SITES FOR INFORMATION ON HOBBIES AND PERSONAL INTERESTS","TO VISIT SITES FOR INFORMATION ON PRODUCTS/ SERVICES I AM THINKING OF BUYING","TO BUY PRODUCTS/ SERVICES ONLINE (NOT GROCERIES)","no GROCERY SHOPPING ONLINE","TO CHECK ON MY BANK ACCOUNT AND OTHER FINANCIAL HOLDINGS","no PLAY GAMES ONLINE","no DOWNLOAD MUSIC","no DOWNLOAD MOVIES","FOR SOMETHING ELSE","no ONLINE DATING","no VOICE OVER IP","TO VISIT SOCIAL NETWORKING SITES (SUCH AS FACEBOOK OR BEBO), OR TO LOOK AT OR/AND TO TAKE PART IN DISCUSSION FORUMS OR B","no ONLINE GAMING / PLAYING FOR MONEY (E.G. POKER, BINGO)","no DOWNLOAD /STREAM TV PROGRAMMES / CLIPS (E.G. BBC IPLAYER, ITV PLAYER, 4OD, SKY PLAYER)","no TO LOOK FOR A JOB/ SEARCH JOB (RECRUITMENT) SITES","no COMPLETING ONLINE SURVEYS","no DON'T KNOW","CABLE BROADBAND","MORE THAN 6 YEARS","SEVERAL TIMES A DAY","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","no DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","BROADSHEET","no MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","no THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","no MID-MARKET","no TABLOIDS","NONE OF THESE","no DON'T KNOW","QUALITY","no POPULAR","Yes","No","Yes","No","No","No","No","No","MALE","60-64","55-64",61,"AB","B","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","EAST MIDLANDS","BACHELOR DEGREE OR EQUIVALENT (=NVQ4)","WHITE","WHITE BRITISH","Refused","YES","HAVE PAID JOB - FULL TIME (30+ HOURS PER WEEK)","REFUSED","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",3.45887 +"1286","Undecided","UK Independence Party","5","5","no Contacted a local councillor or MP/MSP/WAM","no Contacted the media","no Taken an active part in a campaign","no Created or signed a paper petition","no Created or signed an e-petition","no Donated money or paid a membership fee to a charity or campaigning organisation","no Boycotted certain products for political, ethical or environmental reasons","no Attended political meetings","no Donated money or paid a membership fee to a political party","no Taken part in a demonstration, picket or march","no Voted in an election","no Contributed to a discussion or campaign online or on social media","no Taken part in a public consultation","no Don't know","null","no Contacted a local councillor or MP/MSP/WAM","no Contact the media","no Take an active part in a campaign","Create or sign a paper petition","Create or sign an e-petition","no Donate money or pay a membership fee to a charity or campaigning organisation","no Boycott certain products for political, ethical or environmental reasons","Attend political meetings","no Donate money or pay a membership fee to a political party","no Take part in a demonstration, picket or march","Vote in an election","no Contribute to a discussion or campaign online or on social media","no Take part in a public consultation","no Don't know","no Null","Not very interested","A fair amount","Not very much","Could be improved quite a lot","Strongly disagree","Neither agree nor disagree","Tend to agree","Don't know","Strongly disagree","Some influence","No influence at all","Not at all involved","Not at all involved","Yes - where living now","no Yes - another address","no No","no Don't know","I am not a supporter of any political party","Yes - but only seen/heard clips, eg. on the news","Tend to disagree","Strongly disagree","Strongly agree","Don't know","Tend to agree","Tend to disagree","Tend to agree","Strongly disagree","Don't know","Strongly agree","Strongly agree","Strongly agree","Tend to disagree","Tend to agree","Strongly agree","Require all MPs to formally report in writing to constituents about their work each year","Involve the public in monitoring the work of MPs - e.g. invite some constituents to serve on a citizens' jury and report","no Require all MPs to hold an open meeting where members of the public can question their MP at least twice a year","no Introduce a right for constituents to 'recall' their MP if they have behaved badly, forcing an immediate election for","no Require national newspapers to devote at least one page each day to report on the debates in Parliament","Require Parliament to make the attendance and voting records of MPs easily accessible online","no Require all MPs to be on either Facebook or Twitter","no Don't know","no Null","An annual report from MPs about their work","Public monitoring of the work of MPs, eg. citizens' jury","An open meeting where members of the public can question their MP at least twice a year","no A right for constituents to 'recall' their MP if they have behaved badly","no One page each day in national newspapers reporting on the debates in Parliament","no Online records of attendance and voting for each MP","no Facebook and Twitter accounts of MPs","no Don't know","no Null","Strongly agree","Tend to agree","Neither agree nor disagree","Strongly agree","no VIA PERSONAL COMPUTER OR LAPTOP AT HOME","no VIA PERSONAL COMPUTER OR LAPTOP AT WORK/UNIVERSITY/SCHOOL","no VIA CONVENIENT PUBLIC PLACE OF ACCESS - E.G. INTERNET CAFE, LIBRARY ETC.","no VIA MOBILE TERMINAL (E.G. MOBILE TELEPHONE, PDA, PALM, BLACKBERRY)","no VIA TV SET (THROUGH DIGITAL CABLE)","no VIA GAMES CONSOLE E.G. NINTENDO WII, SONY PSP, PSP 2, PSP 3, XBOX 360)","NO ACCESS",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NEVER BUT I DO NOT HAVE ACCESS","no THE GLASGOW HERALD","no THE INDEPENDENT","no THE DAILY TELEGRAPH","no THE GUARDIAN","no THE FINANCIAL TIMES","no THE TIMES","no THE SCOTSMAN","no DAILY EXPRESS","DAILY MAIL","no DAILY RECORD","no THE SUN","no DAILY MIRROR","no DAILY STAR","no WESTERN MAIL (WALES)","no BELFAST TELEGRAPH","no IRISH NEWS","no NEWS LETTER (ULSTER)","no THE METRO","no EVENING STANDARD","no I NEWSPAPER","no BROADSHEET","MID MARKET","no TABLOID","no NONE OF THESE","no DON'T KNOW","no SUNDAY MAIL (SCOTLAND)","THE MAIL ON SUNDAY","no SUNDAY POST","no THE INDEPENDENT ON SUNDAY","no SUNDAY TIMES","no SUNDAY TELEGRAPH","no SUNDAY EXPRESS","no OBSERVER","no NEWS OF THE WORLD","no THE PEOPLE","no SUNDAY MIRROR","no SUNDAY SPORT","no SCOTLAND ON SUNDAY","no DAILY STAR SUNDAY","no THE SUN (SUNDAY)","no BROADSHEET","MID-MARKET","no TABLOIDS","no NONE OF THESE","no DON'T KNOW","no QUALITY","POPULAR","No","No","No","Yes","Yes","Yes","Yes","Yes","MALE","65+","65-74",65,"C2","C2","SELF-EMPLOYED","EAST MIDLANDS","NO FORMAL QUALIFICATIONS","WHITE","WHITE BRITISH","UK Independence Party","YES","SELF-EMPLOYED","H £15,500 - £17,499","BEING BOUGHT ON A MORTGAGE","OWNED NET","POST FAMILY","MARRIED - NOT PARENT/GUARDIAN","2",NA,"NO","no AGED 0-3","no AGED 4-5","no AGED 6-9","no AGED 10-14","NO CHILDREN UNDER 15","no REFUSED",1.94413 diff --git a/data/SQL_SAFI.sqlite b/data/SQL_SAFI.sqlite new file mode 100644 index 00000000..fddaf021 Binary files /dev/null and b/data/SQL_SAFI.sqlite differ diff --git a/data/SQL_data.zip b/data/SQL_data.zip new file mode 100644 index 00000000..9561a61d Binary files /dev/null and b/data/SQL_data.zip differ diff --git a/data/audit_of_political_engagement_11_ukda_data_dictionary.docx b/data/audit_of_political_engagement_11_ukda_data_dictionary.docx new file mode 100644 index 00000000..2a99ca5d Binary files /dev/null and b/data/audit_of_political_engagement_11_ukda_data_dictionary.docx differ diff --git a/discuss.md b/discuss.md new file mode 100644 index 00000000..3a59d683 --- /dev/null +++ b/discuss.md @@ -0,0 +1,7 @@ +--- +title: Discussion +--- + +FIXME + + diff --git a/fig/01-SQLite_plugin_install_page.png b/fig/01-SQLite_plugin_install_page.png new file mode 100644 index 00000000..7bf12bff Binary files /dev/null and b/fig/01-SQLite_plugin_install_page.png differ diff --git a/fig/01-SQLite_starting_plugin.png b/fig/01-SQLite_starting_plugin.png new file mode 100644 index 00000000..d32b61b7 Binary files /dev/null and b/fig/01-SQLite_starting_plugin.png differ diff --git a/fig/01-change_start_up.png b/fig/01-change_start_up.png new file mode 100644 index 00000000..42a2efab Binary files /dev/null and b/fig/01-change_start_up.png differ diff --git a/fig/DB _Browser_install_1.png b/fig/DB _Browser_install_1.png new file mode 100644 index 00000000..228787f5 Binary files /dev/null and b/fig/DB _Browser_install_1.png differ diff --git a/fig/DB _Browser_install_2.png b/fig/DB _Browser_install_2.png new file mode 100644 index 00000000..f0b7c02b Binary files /dev/null and b/fig/DB _Browser_install_2.png differ diff --git a/fig/DB_Browser_install_1.png b/fig/DB_Browser_install_1.png new file mode 100644 index 00000000..228787f5 Binary files /dev/null and b/fig/DB_Browser_install_1.png differ diff --git a/fig/DB_Browser_install_2.png b/fig/DB_Browser_install_2.png new file mode 100644 index 00000000..f0b7c02b Binary files /dev/null and b/fig/DB_Browser_install_2.png differ diff --git a/fig/DB_Browser_run_1.png b/fig/DB_Browser_run_1.png new file mode 100644 index 00000000..1723dba8 Binary files /dev/null and b/fig/DB_Browser_run_1.png differ diff --git a/fig/DB_Browser_run_2.png b/fig/DB_Browser_run_2.png new file mode 100644 index 00000000..c0a702b0 Binary files /dev/null and b/fig/DB_Browser_run_2.png differ diff --git a/fig/DB_Browser_run_3.png b/fig/DB_Browser_run_3.png new file mode 100644 index 00000000..244f0b4c Binary files /dev/null and b/fig/DB_Browser_run_3.png differ diff --git a/fig/DB_Browser_run_4.png b/fig/DB_Browser_run_4.png new file mode 100644 index 00000000..9601108b Binary files /dev/null and b/fig/DB_Browser_run_4.png differ diff --git a/fig/Import Wizard_3.png b/fig/Import Wizard_3.png new file mode 100644 index 00000000..291c0808 Binary files /dev/null and b/fig/Import Wizard_3.png differ diff --git a/fig/OR_01_parse_options.png b/fig/OR_01_parse_options.png new file mode 100644 index 00000000..40117f5f Binary files /dev/null and b/fig/OR_01_parse_options.png differ diff --git a/fig/OR_02_History.png b/fig/OR_02_History.png new file mode 100644 index 00000000..175820df Binary files /dev/null and b/fig/OR_02_History.png differ diff --git a/fig/OR_02_Transform.png b/fig/OR_02_Transform.png new file mode 100644 index 00000000..78835e17 Binary files /dev/null and b/fig/OR_02_Transform.png differ diff --git a/fig/Python_function_parameters_9.png b/fig/Python_function_parameters_9.png new file mode 100644 index 00000000..444214b3 Binary files /dev/null and b/fig/Python_function_parameters_9.png differ diff --git a/fig/Python_install_1.png b/fig/Python_install_1.png new file mode 100644 index 00000000..70458e8f Binary files /dev/null and b/fig/Python_install_1.png differ diff --git a/fig/Python_install_2.png b/fig/Python_install_2.png new file mode 100644 index 00000000..afacb678 Binary files /dev/null and b/fig/Python_install_2.png differ diff --git a/fig/Python_jupyter_7.png b/fig/Python_jupyter_7.png new file mode 100644 index 00000000..f3fcc65e Binary files /dev/null and b/fig/Python_jupyter_7.png differ diff --git a/fig/Python_jupyter_8.png b/fig/Python_jupyter_8.png new file mode 100644 index 00000000..0c7f87d3 Binary files /dev/null and b/fig/Python_jupyter_8.png differ diff --git a/fig/Python_jupyterl_6.png b/fig/Python_jupyterl_6.png new file mode 100644 index 00000000..955ebb78 Binary files /dev/null and b/fig/Python_jupyterl_6.png differ diff --git a/fig/Python_repl_4.png b/fig/Python_repl_4.png new file mode 100644 index 00000000..63272fd2 Binary files /dev/null and b/fig/Python_repl_4.png differ diff --git a/fig/Python_repl_5.png b/fig/Python_repl_5.png new file mode 100644 index 00000000..e309cf42 Binary files /dev/null and b/fig/Python_repl_5.png differ diff --git a/fig/Python_repll_3.png b/fig/Python_repll_3.png new file mode 100644 index 00000000..f2c64ff4 Binary files /dev/null and b/fig/Python_repll_3.png differ diff --git a/fig/SQL_00_ODBC_Data_Source.png b/fig/SQL_00_ODBC_Data_Source.png new file mode 100644 index 00000000..67a1fca6 Binary files /dev/null and b/fig/SQL_00_ODBC_Data_Source.png differ diff --git a/fig/SQL_01-SQLite_plugin_initial_window.png b/fig/SQL_01-SQLite_plugin_initial_window.png new file mode 100644 index 00000000..19949f7b Binary files /dev/null and b/fig/SQL_01-SQLite_plugin_initial_window.png differ diff --git a/fig/SQL_01_invoke_shell.png b/fig/SQL_01_invoke_shell.png new file mode 100644 index 00000000..26249d83 Binary files /dev/null and b/fig/SQL_01_invoke_shell.png differ diff --git a/fig/SQL_01_sqlite_tools_download.png b/fig/SQL_01_sqlite_tools_download.png new file mode 100644 index 00000000..9cd89e1c Binary files /dev/null and b/fig/SQL_01_sqlite_tools_download.png differ diff --git a/fig/SQL_02_Import_wizard.png b/fig/SQL_02_Import_wizard.png new file mode 100644 index 00000000..999075ea Binary files /dev/null and b/fig/SQL_02_Import_wizard.png differ diff --git a/fig/SQL_02_Import_wizard_2.png b/fig/SQL_02_Import_wizard_2.png new file mode 100644 index 00000000..6635fa49 Binary files /dev/null and b/fig/SQL_02_Import_wizard_2.png differ diff --git a/fig/SQL_02_Import_wizard_3.png b/fig/SQL_02_Import_wizard_3.png new file mode 100644 index 00000000..e4866f65 Binary files /dev/null and b/fig/SQL_02_Import_wizard_3.png differ diff --git a/fig/SQL_02_execute_sql.png b/fig/SQL_02_execute_sql.png new file mode 100644 index 00000000..f1a0478e Binary files /dev/null and b/fig/SQL_02_execute_sql.png differ diff --git a/fig/SQL_02_expanded_tree.png b/fig/SQL_02_expanded_tree.png new file mode 100644 index 00000000..582fd3fc Binary files /dev/null and b/fig/SQL_02_expanded_tree.png differ diff --git a/fig/SQL_02_plugin_01.png b/fig/SQL_02_plugin_01.png new file mode 100644 index 00000000..a092e05c Binary files /dev/null and b/fig/SQL_02_plugin_01.png differ diff --git a/fig/SQL_02_query_results.png b/fig/SQL_02_query_results.png new file mode 100644 index 00000000..0ecd91ea Binary files /dev/null and b/fig/SQL_02_query_results.png differ diff --git a/fig/SQL_04_Nulls_01.png b/fig/SQL_04_Nulls_01.png new file mode 100644 index 00000000..1ae42dee Binary files /dev/null and b/fig/SQL_04_Nulls_01.png differ diff --git a/fig/SQL_04_Nulls_02.png b/fig/SQL_04_Nulls_02.png new file mode 100644 index 00000000..70424e6b Binary files /dev/null and b/fig/SQL_04_Nulls_02.png differ diff --git a/fig/SQL_04_Nulls_03.png b/fig/SQL_04_Nulls_03.png new file mode 100644 index 00000000..a1c8d29b Binary files /dev/null and b/fig/SQL_04_Nulls_03.png differ diff --git a/fig/SQL_04_Nulls_04.png b/fig/SQL_04_Nulls_04.png new file mode 100644 index 00000000..13946f57 Binary files /dev/null and b/fig/SQL_04_Nulls_04.png differ diff --git a/fig/SQL_05_dates_01.png b/fig/SQL_05_dates_01.png new file mode 100644 index 00000000..2d25a7b7 Binary files /dev/null and b/fig/SQL_05_dates_01.png differ diff --git a/fig/SQL_06_villages.png b/fig/SQL_06_villages.png new file mode 100644 index 00000000..0808fb5d Binary files /dev/null and b/fig/SQL_06_villages.png differ diff --git a/fig/SQL_07_Animals_eat.png b/fig/SQL_07_Animals_eat.png new file mode 100644 index 00000000..542146b5 Binary files /dev/null and b/fig/SQL_07_Animals_eat.png differ diff --git a/fig/SQL_07_Import_Wizard.png b/fig/SQL_07_Import_Wizard.png new file mode 100644 index 00000000..4c6b717e Binary files /dev/null and b/fig/SQL_07_Import_Wizard.png differ diff --git a/fig/SQL_07_Import_Wizard_02.png b/fig/SQL_07_Import_Wizard_02.png new file mode 100644 index 00000000..071b57ee Binary files /dev/null and b/fig/SQL_07_Import_Wizard_02.png differ diff --git a/fig/SQL_07_Import_Wizard_2.png b/fig/SQL_07_Import_Wizard_2.png new file mode 100644 index 00000000..b0d89ce0 Binary files /dev/null and b/fig/SQL_07_Import_Wizard_2.png differ diff --git a/fig/SQL_07_Import_wizard_01.png b/fig/SQL_07_Import_wizard_01.png new file mode 100644 index 00000000..6608a3b5 Binary files /dev/null and b/fig/SQL_07_Import_wizard_01.png differ diff --git a/fig/SQL_08_SQLite_SQLite_commands.png b/fig/SQL_08_SQLite_SQLite_commands.png new file mode 100644 index 00000000..c870662a Binary files /dev/null and b/fig/SQL_08_SQLite_SQLite_commands.png differ diff --git a/fig/SQL_08_SQLite_cmd_output.png b/fig/SQL_08_SQLite_cmd_output.png new file mode 100644 index 00000000..1cf1b5cd Binary files /dev/null and b/fig/SQL_08_SQLite_cmd_output.png differ diff --git a/fig/SQL_08_SQLite_shell.png b/fig/SQL_08_SQLite_shell.png new file mode 100644 index 00000000..357d9a97 Binary files /dev/null and b/fig/SQL_08_SQLite_shell.png differ diff --git a/fig/SQL_08_SQLite_shell_dot_commands.png b/fig/SQL_08_SQLite_shell_dot_commands.png new file mode 100644 index 00000000..90091c8b Binary files /dev/null and b/fig/SQL_08_SQLite_shell_dot_commands.png differ diff --git a/fig/SQL_08_SQLite_shell_query_example.png b/fig/SQL_08_SQLite_shell_query_example.png new file mode 100644 index 00000000..2f59f6f9 Binary files /dev/null and b/fig/SQL_08_SQLite_shell_query_example.png differ diff --git a/fig/SQL_08_my_filename.png b/fig/SQL_08_my_filename.png new file mode 100644 index 00000000..e8974fd1 Binary files /dev/null and b/fig/SQL_08_my_filename.png differ diff --git a/fig/SQL_09_Animals.png b/fig/SQL_09_Animals.png new file mode 100644 index 00000000..c69e5099 Binary files /dev/null and b/fig/SQL_09_Animals.png differ diff --git a/fig/SQL_09_Animals_Eat.png b/fig/SQL_09_Animals_Eat.png new file mode 100644 index 00000000..dbd533b3 Binary files /dev/null and b/fig/SQL_09_Animals_Eat.png differ diff --git a/fig/SQL_09_Cross_join.png b/fig/SQL_09_Cross_join.png new file mode 100644 index 00000000..f9edcce5 Binary files /dev/null and b/fig/SQL_09_Cross_join.png differ diff --git a/fig/SQL_09_Inner_Join.png b/fig/SQL_09_Inner_Join.png new file mode 100644 index 00000000..4477f21c Binary files /dev/null and b/fig/SQL_09_Inner_Join.png differ diff --git a/fig/SQL_09_Left_Outer_Join_1.png b/fig/SQL_09_Left_Outer_Join_1.png new file mode 100644 index 00000000..b8709c93 Binary files /dev/null and b/fig/SQL_09_Left_Outer_Join_1.png differ diff --git a/fig/SQL_09_Left_Outer_Join_2.png b/fig/SQL_09_Left_Outer_Join_2.png new file mode 100644 index 00000000..bc9ba6cc Binary files /dev/null and b/fig/SQL_09_Left_Outer_Join_2.png differ diff --git a/fig/SQL_09_join1.png b/fig/SQL_09_join1.png new file mode 100644 index 00000000..abc9da25 Binary files /dev/null and b/fig/SQL_09_join1.png differ diff --git a/fig/SQL_09_join5.png b/fig/SQL_09_join5.png new file mode 100644 index 00000000..87e58fbe Binary files /dev/null and b/fig/SQL_09_join5.png differ diff --git a/fig/SQL_09_maize.png b/fig/SQL_09_maize.png new file mode 100644 index 00000000..45c6096e Binary files /dev/null and b/fig/SQL_09_maize.png differ diff --git a/fig/SQL_09_members12.png b/fig/SQL_09_members12.png new file mode 100644 index 00000000..271adccf Binary files /dev/null and b/fig/SQL_09_members12.png differ diff --git a/fig/SQL_10_Choose_Columns.png b/fig/SQL_10_Choose_Columns.png new file mode 100644 index 00000000..d884da10 Binary files /dev/null and b/fig/SQL_10_Choose_Columns.png differ diff --git a/fig/SQL_10_Choose_Columns_2.png b/fig/SQL_10_Choose_Columns_2.png new file mode 100644 index 00000000..3c094d8d Binary files /dev/null and b/fig/SQL_10_Choose_Columns_2.png differ diff --git a/fig/SQL_10_DataSource.png b/fig/SQL_10_DataSource.png new file mode 100644 index 00000000..8e14d632 Binary files /dev/null and b/fig/SQL_10_DataSource.png differ diff --git a/fig/SQL_10_DataSource_Driver_Connect.png b/fig/SQL_10_DataSource_Driver_Connect.png new file mode 100644 index 00000000..c9764371 Binary files /dev/null and b/fig/SQL_10_DataSource_Driver_Connect.png differ diff --git a/fig/SQL_10_No_Tables.png b/fig/SQL_10_No_Tables.png new file mode 100644 index 00000000..c9d9d65f Binary files /dev/null and b/fig/SQL_10_No_Tables.png differ diff --git a/fig/SQL_10_place_data.png b/fig/SQL_10_place_data.png new file mode 100644 index 00000000..a886bc87 Binary files /dev/null and b/fig/SQL_10_place_data.png differ diff --git a/fig/SQL_10_return_data.png b/fig/SQL_10_return_data.png new file mode 100644 index 00000000..b863f259 Binary files /dev/null and b/fig/SQL_10_return_data.png differ diff --git a/fig/Spreadsheets_dates_01.png b/fig/Spreadsheets_dates_01.png new file mode 100644 index 00000000..f8e359b3 Binary files /dev/null and b/fig/Spreadsheets_dates_01.png differ diff --git a/fig/Spreadsheets_dates_02.png b/fig/Spreadsheets_dates_02.png new file mode 100644 index 00000000..20bbc233 Binary files /dev/null and b/fig/Spreadsheets_dates_02.png differ diff --git a/fig/Spreadsheets_dates_03.png b/fig/Spreadsheets_dates_03.png new file mode 100644 index 00000000..969d7284 Binary files /dev/null and b/fig/Spreadsheets_dates_03.png differ diff --git a/fig/spreadsheet_simple_data_01.png b/fig/spreadsheet_simple_data_01.png new file mode 100644 index 00000000..82af893d Binary files /dev/null and b/fig/spreadsheet_simple_data_01.png differ diff --git a/fig/spreadsheets_Data_validation_01.png b/fig/spreadsheets_Data_validation_01.png new file mode 100644 index 00000000..c90b2c33 Binary files /dev/null and b/fig/spreadsheets_Data_validation_01.png differ diff --git a/fig/spreadsheets_Data_validation_02.png b/fig/spreadsheets_Data_validation_02.png new file mode 100644 index 00000000..77719759 Binary files /dev/null and b/fig/spreadsheets_Data_validation_02.png differ diff --git a/fig/spreadsheets_Data_validation_03.png b/fig/spreadsheets_Data_validation_03.png new file mode 100644 index 00000000..4d7edc06 Binary files /dev/null and b/fig/spreadsheets_Data_validation_03.png differ diff --git a/fig/spreadsheets_Data_validation_04.png b/fig/spreadsheets_Data_validation_04.png new file mode 100644 index 00000000..948fcf4f Binary files /dev/null and b/fig/spreadsheets_Data_validation_04.png differ diff --git a/fig/spreadsheets_Data_validation_05.png b/fig/spreadsheets_Data_validation_05.png new file mode 100644 index 00000000..9de6f9e8 Binary files /dev/null and b/fig/spreadsheets_Data_validation_05.png differ diff --git a/fig/ssql_01_sqlite_tools_download.png b/fig/ssql_01_sqlite_tools_download.png new file mode 100644 index 00000000..9cd89e1c Binary files /dev/null and b/fig/ssql_01_sqlite_tools_download.png differ diff --git a/index.md b/index.md new file mode 100644 index 00000000..e972b94b --- /dev/null +++ b/index.md @@ -0,0 +1,40 @@ +--- +permalink: index.html +site: sandpaper::sandpaper_site +--- + +This is an alpha lesson to teach Data Management with SQL for Social Scientists, +We welcome and criticism, or error; and will take your feedback into account to +improve both the presentation and the content. + +**This lesson is not currently under active maintenance. You are welcome to teach the lesson and contribute changes to the content, but you may have to wait longer than usual for any contributions to be processed. If you are interested in [volunteering as a Maintainer](https://docs.carpentries.org/topic_folders/maintainers/maintainers.html) on this lesson, please [contact The Carpentries Curriculum Team](mailto:team@carpentries.org) or open an issue in this repository.** + +Databases are useful for both storing and using data effectively. Using a +relational database serves several purposes. + +- It keeps your data separate from your analysis. This means there's no risk of + accidentally changing data when you analyze it. +- If we get new data we can rerun a query to find all the data that meets + certain criteria. +- It's fast, even for large amounts of data. +- It improves quality control of data entry (type constraints and use of forms + in Access, Filemaker, etc.) +- The concepts of relational database querying are core to understanding how to + do similar things using programming languages such as R or Python. + +This lesson will teach you what relational databases are, how you can load data +into them and how you can query databases to extract just the information that +you need. + +:::::::::::::::::::::::::::::::::::::::::: prereq + +## Prerequisites + +We expect you to have learn a bit about the SAFI dataset in the spreadsheet +and OpenRefine session. It is not necessary, but will greatly improve your +ability to understand the power of SQL and when to use it versus another tool. + + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/instructor-notes.md b/instructor-notes.md new file mode 100644 index 00000000..fa168ad3 --- /dev/null +++ b/instructor-notes.md @@ -0,0 +1,93 @@ +--- +title: Instructors' Notes +--- + +## Setup + +There is a seperate file for the setiup instructions for installing the various component used in this lesson. [setup](../learners/setup.md) + +- The DB Browser application +- SQLite Shell program +- SQLite ODBC connector + +## The datasets used + +The data from the SN7577 dataset is used. It has been placed into an SQLite database called SN7577.SQLite. +The data dictionary file for SN7577 is also referenced 'audit\_of\_political\_engagement\_11\_ukda\_data\_dictionary.docx'. +The SN7577.tab and SN7577\_Text.csv files are used when creating tables. All of the files are in the single [SQL\_data.zip](data/SQL_data.zip) file. + +The SN7577.SQLite database file will need to be downloaded to the local machine before it can be opened by DB Browser. + +## The Lessons + +If time is short, lessons 8 and 10 could be omitted as they don't intoduce any new SQL concepts. + +[What is a Relational database](../episodes/01-relational-database.md) + +Explains terms like Relational database, Table, Datatype, Keys, Null + +[Using DB Browser](../episodes/02-db-browser.md) + +This episode is a tour of the plugin and covers how to connect to an existing database, how to run a simple query and see the results. + +[The Select statement](../episodes/03-select.md) + +SQL is explained and the different types of statements types included in SQL. +The basic components (select, from, where and sort) of the select statement are covered using the SN7577 table + +[Missing data](../episodes/04-missing-data.md) + +In addition to NULL and how it is displayed in the plugin and relating it back to the actual dataset used to create the table, +There is a discussion of what else in the data could be a representation of missing data. e.g. -99 or -1. +Making use of the available data dictionary information. + +[Creating new columns](../episodes/05-creating-new-columns.md) + +This episode cover the creation of new columns as part of a query. +New columns are created from existing columns using builtin functions. +Changing datatypes of columns using `cast` is described along with how different datatypes appear in the plugin. +Both variants of the `case` statement are covered; to decide a value based on a decision and to allocate a value to a 'bin'. +The case statement is a s close as we get to more traditional programming, but it is a key part of SL available in almost all variants. +The use of Alias' are covered, in this case as a convenience rather than a necessity as they are in joins. + +[Aggregations](../episodes/06-aggregation.md) + +The basic builtin aggregation functions and the `distinct` keyword are covered. +The use of the `group by` clause is explained as a way of providing more meaningful summaries across a table. +The `having` clause is introduced and compared to the `where` clause. + +[Creating tables and views](../episodes/07-creating-tables-views.md) + +The various ways of creating tables are covered; From scratch, based on a query and by reading data from a file. +Adding data to table is demonstrated for the table created from scratch. +The table names may need to be changed to avoid existing names in the database. I would suggest prefixing with initiials. +The SQLite plugin is used to read the datasets which will need to have been copied to the local machine. +All of the options in the plugin wizard are explained. +Creating views, the close relationship to tables and guidance on naming views is covered. + +[The SQLite command line](../episodes/08-sqlite-command-line.md) + +Instructions on starting the command line shell are given. It is assumed that the setup instructions have already been completed. +If the sqlite3.exe has not been placed in the users path, then they eill either need to specify the full path to the executable or specify the full path to the database file when they try to connect. It is probably easier to ensure that the executable is in the path. +A comparison is made between the shell and the plugin GUI and reasons for wanting to use the shell are given. +Example of running queries are provided. +Use of 'dot' commands to change the output format are covered. +The use of 'dot' commands to save the output to a file is covered. +How to automate a script is covered. + +[Joins](../episodes/09-joins.md) + +The need for table joins is discussed +The different types of joins is discussed and why you may need to do more than just inner joins to investigate your data. +There are examples of usingthe `join` and `on` SQL syntax. +There is more discussion on Alias'. + +[Using database tables in other environments](../episodes/10-other-environments.md) + +The episode requires that the ODBC driver has been installed. It could be done as an Instructor demo only, but obviously that is not so much fun for the students. +The purpose and use of connection strings is covered +There is a detailed demonstration of using ODBC from Excel to connect to the SN7577 database. It doesn't matter what table is used. +There are code only examples from R and Python. The aim is to emphasise the connection process and sending the query for execution rather than the code itself. +The code could be run in appropriate environments, but the database location would have to be changed. + + diff --git a/learner-profiles.md b/learner-profiles.md new file mode 100644 index 00000000..434e335a --- /dev/null +++ b/learner-profiles.md @@ -0,0 +1,5 @@ +--- +title: FIXME +--- + +This is a placeholder file. Please add content here. diff --git a/md5sum.txt b/md5sum.txt new file mode 100644 index 00000000..ad5eb83c --- /dev/null +++ b/md5sum.txt @@ -0,0 +1,21 @@ +"file" "checksum" "built" "date" +"CODE_OF_CONDUCT.md" "c93c83c630db2fe2462240bf72552548" "site/built/CODE_OF_CONDUCT.md" "2023-05-02" +"LICENSE.md" "b24ebbb41b14ca25cf6b8216dda83e5f" "site/built/LICENSE.md" "2023-05-02" +"config.yaml" "73fc5a27bd5d00717d3b20353e66a754" "site/built/config.yaml" "2023-05-02" +"index.md" "d8b7ff0e4199669fbfc74cb30901e682" "site/built/index.md" "2023-05-02" +"setup-backup.md" "da773b43bb5a162916f88831eec20f19" "site/built/setup-backup.md" "2023-05-02" +"episodes/01-relational-database.md" "7bc678384ac86b3c9e7d4b92acfc1ca7" "site/built/01-relational-database.md" "2023-05-02" +"episodes/02-db-browser.md" "7f4b6dc108f4cb3d7895283bbcd5753e" "site/built/02-db-browser.md" "2023-05-02" +"episodes/03-select.md" "64248f566cfc9ba60c77ae63b4b011f4" "site/built/03-select.md" "2023-05-02" +"episodes/04-missing-data.md" "c611ae637ca02da2e34fa004085d3f75" "site/built/04-missing-data.md" "2023-05-02" +"episodes/05-creating-new-columns.md" "7ae562801afe3d8b017f8865a1569298" "site/built/05-creating-new-columns.md" "2023-05-02" +"episodes/06-aggregation.md" "c5e7b2b68258568821cf091a24458ad4" "site/built/06-aggregation.md" "2023-05-02" +"episodes/07-creating-tables-views.md" "3457ba42b719d1dbd71e58294e598e45" "site/built/07-creating-tables-views.md" "2023-05-02" +"episodes/08-sqlite-command-line.md" "f701ac4ba1923380f9d21fc15225a25e" "site/built/08-sqlite-command-line.md" "2023-05-02" +"episodes/09-joins.md" "5112aea3af98a2872af9c8d3f9df56ca" "site/built/09-joins.md" "2023-05-02" +"episodes/10-other-environments.md" "908de0153c9b99383d0b2887694441c2" "site/built/10-other-environments.md" "2023-05-02" +"instructors/instructor-notes.md" "2f2c9a58c61b76c53d8897106fb9f5de" "site/built/instructor-notes.md" "2023-05-02" +"learners/discuss.md" "522bcb192adf6702a2e3cb2f0d1412b5" "site/built/discuss.md" "2023-05-02" +"learners/reference.md" "4e0dcbc7892af6f9610d44d356e66617" "site/built/reference.md" "2023-05-02" +"learners/setup.md" "cb53e7472b6de6c3c37f545939802a44" "site/built/setup.md" "2023-05-02" +"profiles/learner-profiles.md" "60b93493cf1da06dfd63255d73854461" "site/built/learner-profiles.md" "2023-05-02" diff --git a/reference.md b/reference.md new file mode 100644 index 00000000..456f9409 --- /dev/null +++ b/reference.md @@ -0,0 +1,9 @@ +--- +title: 'Glossary' +--- + +## Glossary + +FIXME + + diff --git a/setup-backup.md b/setup-backup.md new file mode 100644 index 00000000..96499660 --- /dev/null +++ b/setup-backup.md @@ -0,0 +1,70 @@ +--- +layout: lesson +title: "Pre-requisites" +teaching: 15 +exercises: 10 +questions: +- "How do I install the DB Browser application?" +- "How do I install the SQLite Shell program?" +- "How do I install the ODBC driver for SQLite?" +objectives: +- "Install the Firefox SQLite plugin " +- "Invoke the Firefox SQLite plugin" +- "Install the SQLite Shell program" +- "Invoke the SQLite Shell program" +- "Install the ODBC driver" +keypoints: +- "Both the DB Drowser application and the SQLite tools can be directly downloaded from the Internet" +- "The DB Browser application is a standard windows program" +- "The sqlite3 program is run from the windows commandline" +- "You will need admin privileges to install the ODBC driver" +--- +## Introduction + +## Installing DB Browser for SQLite + +The software can be downloaded from the [DB Browser](http://sqlitebrowser.org/) site +From the front page you can select the version you require. There are specific downloads for Windows and Mac users. For various Linux distributions there are detailed instructions at the bottom of the page. + +![DB Browser install](./fig/DB_Browser_install_1.png) + +## Installing for Windows. + +For a current Windows environment the 64-bit windows download will be most appropriate. + +The download is a windows executable file which you can run by double clicking it. It opens an installation wizard. You can default all of the options in the wizard. You will require admin permissions on the PC/Laptop you install on. +By default the application is launched automatically when the installation is complete. +It does not create an icon on the desktop. To explicitly launch the application after installing it, use the windows button (bottom left of screen) and type in ‘DB Browser’ in the search bar and selecting the application when it appears. + +![DB Browser run](./fig/DB_Browser_install_2.png) + +## Install the SQLite Shell program + +The SQLite shell can be downloaded from [here](https://sqlite.org/download.html). There are versions available for Linux, Mac and Windows. As I have a Windows machine I will download the Windows version. You should download the version appropriate to your machine. + +![SQLite tools](./fig/SQL_01_sqlite_tools_download.png) + +The number after the x86- may be different when you download if a later version has been released. +The download is a .zip file. You need to unzip the file and store the contents (3 files) in a folder of your choosing. There is no actual install process, the program (file) sqlite3.exe can be run directly from the folder. +You may however like to add the folder location to your PATH environment variable so that you can call sqlite3 from any command prompt. + + +## Invoke the SQLite Shell program + +You invoke the SQLite Shell from the commandline. Remember that the program is sqlite3 and you must have added the folder name to your envirnment PATH or explicitly navigated to the folder before trying to run the program. + +You do not need to specify any parameters, connection to a databse can be done from within the shell. + +![Launch SQLite shell](./fig/SQL_01_invoke_shell.png) + +## Installing the SQLite ODBC connector + +The SQLIte main site at https://sqlite.org/ does not provide a download for an ODBC connector. A Google search will provide other sites that do. One freely available SQLite ODBC connector is available at http://www.ch-werner.de/sqliteodbc/. You should download the sqliteodbc.exe file. The file is a self contained Windows installer which you can run by double clicking it. You will however need Admin rights on the machine to perform the install. + +This is a 32bit ODBC connector so it is assumed that you are using a 32bit version of Excel. A 64bit version of the driver is available from the Werner site should you need it. + +You can check that the driver has been successfully installed by typing ODBC into the Windows start search panel and then selecting 'ODBC DataSources (32 bit)' + +![SQL_00_ODBC_Data_Source](./fig/SQL_00_ODBC_Data_Source.png) + +At the bottom of the list in the 'system DSN' tab youshould see the entry for the 'SQlite3 datasource'. diff --git a/setup.md b/setup.md new file mode 100644 index 00000000..dcd753bc --- /dev/null +++ b/setup.md @@ -0,0 +1,77 @@ +--- +title: Pre-requisites +teaching: 15 +exercises: 10 +questions: +- How do I install the DB Browser application? +- How do I install the SQLite Shell program? +- How do I install the ODBC driver for SQLite? +objectives: +- 'Install the Firefox SQLite plugin ' +- Invoke the Firefox SQLite plugin +- Install the SQLite Shell program +- Invoke the SQLite Shell program +- Install the ODBC driver +keypoints: +- Both the DB Browser application and the SQLite tools can be directly downloaded + from the Internet +- The DB Browser application is a standard windows program +- The sqlite3 program is run from the windows commandline +- You will need admin privileges to install the ODBC driver +--- + +## Download files + +You will need these two files: + +1. Pre-populated SQLite database: [SQL\_SAFI.sqlite](https://datacarpentry.org/sql-socialsci/data/SQL_SAFI.sqlite) +2. SAFI Farms table as a CSV file: [SAFI\_farms.csv](https://datacarpentry.org/sql-socialsci/data/SAFI_farms.csv) + +## Installing DB Browser for SQLite + +The software can be downloaded from the [DB Browser](https://sqlitebrowser.org/) site +From the front page you can select the version you require. There are specific downloads for Windows and Mac users. For various Linux distributions there are detailed instructions at the bottom of the page. + +![](./fig/DB_Browser_install_1.png){alt='DB Browser install'} + +### Installing for Windows. + +For a current Windows environment the 64-bit windows download will be most appropriate. + +The download is a windows executable file which you can run by double clicking it. It opens an installation wizard. You can default all of the options in the wizard. You will require admin permissions on the PC/Laptop you install on. +By default the application is launched automatically when the installation is complete. +It does not create an icon on the desktop. To explicitly launch the application after installing it, use the windows button (bottom left of screen) and type in ‘DB Browser' in the search bar and selecting the application when it appears. + +![](./fig/DB_Browser_install_2.png){alt='DB Browser run'} + +## Install the SQLite Shell program + +The SQLite shell can be downloaded from [here](https://sqlite.org/download.html). There are versions available for Linux, Mac and Windows. As I have a Windows machine I will download the Windows version. You should download the version appropriate to your machine. Note that MacOS already have sqlite installed so you can skip this section. + +![](./fig/SQL_01_sqlite_tools_download.png){alt='SQLite tools'} + +The number after the x86- may be different when you download if a later version has been released. +The download is a .zip file. You need to unzip the file and store the contents (3 files) in a folder of your choosing. There is no actual install process, the program (file) sqlite3.exe can be run directly from the folder. +You may however like to add the folder location to your PATH environment variable so that you can call sqlite3 from any command prompt. + +## Invoke the SQLite Shell program + +You invoke the SQLite Shell from the commandline. Remember that the program is sqlite3 and you must have added the folder name to your envirnment PATH or explicitly navigated to the folder before trying to run the program. + +You do not need to specify any parameters, connection to a databse can be done from within the shell. + +![](./fig/SQL_01_invoke_shell.png){alt='Launch SQLite shell'} + +## Installing the SQLite ODBC connector + +The SQLIte main site at [https://sqlite.org/](https://sqlite.org/) does not provide a download for an ODBC connector. A Google search will provide other sites that do. One freely available SQLite ODBC connector is available at [http://www.ch-werner.de/sqliteodbc/](https://www.ch-werner.de/sqliteodbc/). You should download the sqliteodbc.exe file. The file is a self contained Windows installer which you can run by double clicking it. You will however need Admin rights on the machine to perform the install. + +This is a 32bit ODBC connector so it is assumed that you are using a 32bit version of Excel. A 64bit version of the driver is available from the Werner site should you need it. + +You can check that the driver has been successfully installed by typing ODBC into the Windows start search panel and then selecting 'ODBC DataSources (32 bit)' + +![](./fig/SQL_00_ODBC_Data_Source.png){alt='SQL\_00\_ODBC\_Data\_Source'} + +At the bottom of the list in the 'system DSN' tab youshould see the entry for the 'SQlite3 datasource'. + +